cell_common.trunnel 248 B

123456789101112
  1. /* This file contains common data structure that cells use. */
  2. struct trn_cell_extension_fields {
  3. u8 field_type;
  4. u8 field_len;
  5. u8 field[field_len];
  6. };
  7. struct trn_cell_extension {
  8. u8 num;
  9. struct trn_cell_extension_fields fields[num];
  10. };