package comp // A/L packet type ALPacket struct { } func (self *ALPacket) ShouldClose() (bool, int32) { return false, 0 } type LAPacket struct { } func (self *LAPacket) ShouldClose() (bool, int32) { return false, 0 }