From c32e19b4ed62ef9609c35d4bd94654f2f9550dbf Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 11 Jul 2006 03:33:16 +0000 Subject: 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 --- src/or/control.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') 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; -- cgit v1.2.3-54-g00ecf