You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expose MarshalSize as a public interface function
Lenth of the packet is an important piece of information which can
be used for stats reporting and to calculate size or pre-allocated
memory buffers.
Fix empty twcc packet unmarshalling
Currently empty twcc packets fail unmarshalling because they are too
short. These packets aren't actually invalid, however.
Removing `String()` method from `Packet` interface
Per discussion on Slack, this patch undoes the addition
of a `String()` method on a Packet. Compound packets
now use the new `stringify()` function if a contained
Packet doesn't include a `String()` method.