aboutsummaryrefslogtreecommitdiff
path: root/src/or/or.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2005-04-27 22:01:34 +0000
committerNick Mathewson <nickm@torproject.org>2005-04-27 22:01:34 +0000
commitfe65e57ca128e86d17bb5f624da7120ca8cf480c (patch)
treeaca5e95c99015167e46d52bed04bf5ae33753c20 /src/or/or.h
parent02546857d2c0e89e4b94cbeab088341f637318c6 (diff)
downloadtor-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.h4
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;