mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Remove a redundant typedef in proto_ext_or.h
This commit is contained in:
parent
4ac87a430f
commit
0317eb143e
@ -10,11 +10,11 @@
|
|||||||
struct buf_t;
|
struct buf_t;
|
||||||
|
|
||||||
/** A parsed Extended ORPort message. */
|
/** A parsed Extended ORPort message. */
|
||||||
typedef struct ext_or_cmd_t {
|
struct ext_or_cmd_t {
|
||||||
uint16_t cmd; /** Command type */
|
uint16_t cmd; /** Command type */
|
||||||
uint16_t len; /** Body length */
|
uint16_t len; /** Body length */
|
||||||
char body[FLEXIBLE_ARRAY_MEMBER]; /** Message body */
|
char body[FLEXIBLE_ARRAY_MEMBER]; /** Message body */
|
||||||
} ext_or_cmd_t;
|
};
|
||||||
|
|
||||||
int fetch_ext_or_command_from_buf(struct buf_t *buf,
|
int fetch_ext_or_command_from_buf(struct buf_t *buf,
|
||||||
struct ext_or_cmd_t **out);
|
struct ext_or_cmd_t **out);
|
||||||
|
Loading…
Reference in New Issue
Block a user