diff --git a/packet_pool.go b/packet_pool.go index d38750a..f8954a7 100644 --- a/packet_pool.go +++ b/packet_pool.go @@ -21,11 +21,6 @@ func newPacketPool() *packetPool { // add adds a new packet to the pool func (b *packetPool) add(p *Packet) (ps []*Packet) { - // Throw away packet if error indicator - if p.Header.TransportErrorIndicator { - return - } - // Throw away packets that don't have a payload until we figure out what we're going to do with them // TODO figure out what we're going to do with them :D if !p.Header.HasPayload {