diff --git a/compound_packet.go b/compound_packet.go index 27a1ab3..cdd025a 100644 --- a/compound_packet.go +++ b/compound_packet.go @@ -21,10 +21,6 @@ func (c CompoundPacket) validateFirstPacket() error { firstHdr := c[0].Header() - // padding isn't allowed in the first packet in a compound datagram - if firstHdr.Padding { - return errInvalidPadding - } // SenderReport and ReceiverReport are the only types that // are allowed to be the first packet in a compound datagram if (firstHdr.Type != TypeSenderReport) && (firstHdr.Type != TypeReceiverReport) {