diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-04-27 22:01:34 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-04-27 22:01:34 +0000 |
commit | fe65e57ca128e86d17bb5f624da7120ca8cf480c (patch) | |
tree | aca5e95c99015167e46d52bed04bf5ae33753c20 /src/or/or.h | |
parent | 02546857d2c0e89e4b94cbeab088341f637318c6 (diff) | |
download | tor-fe65e57ca128e86d17bb5f624da7120ca8cf480c.tar tor-fe65e57ca128e86d17bb5f624da7120ca8cf480c.tar.gz |
Re-do fragmented control message handling to work with new buf_t system.
svn:r4144
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index 1a31973e2..6df4996cd 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -639,6 +639,10 @@ struct connection_t { /* Used only by control connections */ uint32_t event_mask; + uint16_t incoming_cmd_type; + uint32_t incoming_cmd_len; + uint32_t incoming_cmd_cur_len; + char *incoming_cmd; }; typedef struct connection_t connection_t; |