mirror of
https://github.com/mfontanini/libtins
synced 2026-01-23 02:35:57 +01:00
This was broken by design. Each header held the next header's type, which made iterating through them very tricky (you'd have to look at the previous header's next header value to know the current one while doing so). Now each header contains its own value and the next header value is computed during serialization and then reverted back after that.