Merge branch 'fix-changelogs' into 'main'
[tor.git] / src / trunnel / extension.trunnel
blob177eba059690b32d9fd46812c73c0644932b5bfc
2 /* The cell extension ABI that is also used within other type of structures
3  * such as the ntorv3 data payload. */
5 struct trn_extension_field {
6   u8 field_type;
7   u8 field_len;
8   u8 field[field_len];
9 };
11 struct trn_extension {
12   u8 num;
13   struct trn_extension_field fields[num];