1 /* Copyright (c) 2001 Matej Pfajfar.
2 * Copyright (c) 2001-2004, Roger Dingledine.
3 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
4 * Copyright (c) 2007-2021, The Tor Project, Inc. */
5 /* See LICENSE for licensing information */
9 * @brief Variable-length cell structure.
15 /** Parsed variable-length onion routing cell. */
17 /** Type of the cell: CELL_VERSIONS, etc. */
19 /** Circuit thich received the cell */
21 /** Number of bytes actually stored in <b>payload</b> */
23 /** Payload of this cell */
24 uint8_t payload
[FLEXIBLE_ARRAY_MEMBER
];
27 #endif /* !defined(VAR_CELL_ST_H) */