repo.or.cz
/
tor.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'fix-changelogs' into 'main'
[tor.git]
/
src
/
trunnel
/
extension.trunnel
blob
177eba059690b32d9fd46812c73c0644932b5bfc
1
2
/* The cell extension ABI that is also used within other type of structures
3
* such as the ntorv3 data payload. */
4
5
struct trn_extension_field {
6
u8 field_type;
7
u8 field_len;
8
u8 field[field_len];
9
};
10
11
struct trn_extension {
12
u8 num;
13
struct trn_extension_field fields[num];
14
};