tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

extension.trunnel (284B)


      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 };