kbandla / dpkt

fast, simple packet creation / parsing, with definitions for the basic TCP/IP protocols
Other
1.09k stars 270 forks source link

Update operation of H225.IE class for single-byte elements #533

Closed crocogorical closed 3 years ago

crocogorical commented 3 years ago

H225.IE previously set data attribute to None when there was no data. This meant reassembly in __bytes__ would fail as a result of trying to concat None, and the other data.

Now store b'' in data if there is no data, and packing will succeed.