libtor-src 47.13.0+0.4.7.13

Source code of Tor and Libevent for libtor-sys
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

/* The cell extension ABI that is also used within other type of structures
 * such as the ntorv3 data payload. */

struct trn_extension_field {
  u8 field_type;
  u8 field_len;
  u8 field[field_len];
};

struct trn_extension {
  u8 num;
  struct trn_extension_field fields[num];
};