diff options
author | Roger Dingledine <arma@torproject.org> | 2004-11-16 03:12:53 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-11-16 03:12:53 +0000 |
commit | abdf073f14d511851cf78f34f808c12907504e6f (patch) | |
tree | 45c20996d459308ec9f2f779aa2213843048a948 /src/or/cpuworker.c | |
parent | 2e2db452d6ab47dad22a24ebd05266a75ca08bc4 (diff) | |
download | tor-abdf073f14d511851cf78f34f808c12907504e6f.tar.gz tor-abdf073f14d511851cf78f34f808c12907504e6f.zip |
minor fixes
svn:r2901
Diffstat (limited to 'src/or/cpuworker.c')
-rw-r--r-- | src/or/cpuworker.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/cpuworker.c b/src/or/cpuworker.c index 10072f4bf2..998b4b3791 100644 --- a/src/or/cpuworker.c +++ b/src/or/cpuworker.c @@ -134,7 +134,8 @@ int connection_cpu_process_inbuf(connection_t *conn) { /* parse out the circ it was talking about */ tag_unpack(buf, &addr, &port, &circ_id); circ = NULL; - /* (This is actually right: we want a specific port here in + /* (Here we use connection_exact_get_by_addr_port rather than + * get_by_identity_digest: we want a specific port here in * case there are multiple connections.) */ p_conn = connection_exact_get_by_addr_port(addr,port); if(p_conn) |