make putting back packet buffers a member function of packetBuffer

This commit is contained in:
Marten Seemann 2018-12-30 15:28:52 +07:00
parent d3ea7c0c4c
commit b32fb438af
5 changed files with 35 additions and 32 deletions

View file

@ -169,7 +169,7 @@ func (h *packetHandlerMap) handlePacket(
// We still need to process the packets that were successfully parsed before.
}
if len(packets) == 0 {
putPacketBuffer(buffer)
buffer.Release()
return
}
h.handleParsedPackets(packets)