diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-07-11 03:33:16 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-07-11 03:33:16 +0000 |
commit | c32e19b4ed62ef9609c35d4bd94654f2f9550dbf (patch) | |
tree | d36ad5d190c848cec8c38461748640094f425fd6 /src | |
parent | 39344fc301b9f42358bd7874a0d467ff4d5a0e96 (diff) | |
download | tor-c32e19b4ed62ef9609c35d4bd94654f2f9550dbf.tar.gz tor-c32e19b4ed62ef9609c35d4bd94654f2f9550dbf.zip |
OR_CONN_EVENT_NEW: we should probably handle that , should we not? Especially since 23:26 < phobos> nickm: grep -c "Unrecognized status code 4" tor.log
svn:r6752
Diffstat (limited to 'src')
-rw-r--r-- | src/or/control.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/control.c b/src/or/control.c index 8e19aea94a..48139f3ce6 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -2735,6 +2735,7 @@ control_event_or_conn_status(connection_t *conn,or_conn_status_event_t tp) case OR_CONN_EVENT_CONNECTED: status = "CONNECTED"; break; case OR_CONN_EVENT_FAILED: status = "FAILED"; break; case OR_CONN_EVENT_CLOSED: status = "CLOSED"; break; + case OR_CONN_EVENT_NEW: status = "NEW"; break; default: log_warn(LD_BUG, "Unrecognized status code %d", (int)tp); return 0; |