diff options
author | Roger Dingledine <arma@torproject.org> | 2005-11-19 01:56:58 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-11-19 01:56:58 +0000 |
commit | 700c370a3b9f30495983301883d678ef90bb1621 (patch) | |
tree | 3f2d466dcab1a5ff1af4a5b10ecae13f96605e70 /src/or | |
parent | f824fb5f8308db6c00e19985e8a04038b020765b (diff) | |
download | tor-700c370a3b9f30495983301883d678ef90bb1621.tar.gz tor-700c370a3b9f30495983301883d678ef90bb1621.zip |
misc cleanups
svn:r5428
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/circuitlist.c | 2 | ||||
-rw-r--r-- | src/or/command.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index 9e3dbec54c..77c6d7247e 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -185,7 +185,7 @@ circuit_state_to_string(int state) switch (state) { case CIRCUIT_STATE_BUILDING: return "doing handshakes"; case CIRCUIT_STATE_ONIONSKIN_PENDING: return "processing the onion"; - case CIRCUIT_STATE_OR_WAIT: return "connecting to firsthop"; + case CIRCUIT_STATE_OR_WAIT: return "connecting to server"; case CIRCUIT_STATE_OPEN: return "open"; default: warn(LD_BUG, "Bug: unknown circuit state %d", state); diff --git a/src/or/command.c b/src/or/command.c index 45917935e2..d2fe460bd0 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -227,7 +227,8 @@ command_process_create_cell(cell_t *cell, connection_t *conn) } } -/** Process a 'created' <b>cell</b> that just arrived from <b>conn</b>. Find the circuit +/** Process a 'created' <b>cell</b> that just arrived from <b>conn</b>. + * Find the circuit * that it's intended for. If we're not the origin of the circuit, package * the 'created' cell in an 'extended' relay cell and pass it back. If we * are the origin of the circuit, send it to circuit_finish_handshake() to |