aboutsummaryrefslogtreecommitdiff
path: root/src/or/control.c
diff options
context:
space:
mode:
authorRobert Ransom <rransom.8774@gmail.com>2011-05-18 04:33:48 -0700
committerRobert Ransom <rransom.8774@gmail.com>2011-05-20 08:25:42 -0700
commit36afdebe1ac08fe02c938a73270bd2f11999d677 (patch)
tree1c10f78169f5b8b2ec5f5893142ca4a476646bd8 /src/or/control.c
parent90f810801e92e8ee5d0b1341172f83e844af56c8 (diff)
downloadtor-36afdebe1ac08fe02c938a73270bd2f11999d677.tar
tor-36afdebe1ac08fe02c938a73270bd2f11999d677.tar.gz
Add an XXX
Diffstat (limited to 'src/or/control.c')
-rw-r--r--src/or/control.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/control.c b/src/or/control.c
index f7ff92ab3..47e708182 100644
--- a/src/or/control.c
+++ b/src/or/control.c
@@ -2894,6 +2894,9 @@ connection_control_process_inbuf(control_connection_t *conn)
return 0;
}
+ /* XXXX Why is this not implemented as a table like the GETINFO
+ * items are? Even handling the plus signs at the beginnings of
+ * commands wouldn't be very hard with proper macros. */
cmd_data_len = (uint32_t)data_len;
if (!strcasecmp(conn->incoming_cmd, "SETCONF")) {
if (handle_control_setconf(conn, cmd_data_len, args))