aboutsummaryrefslogtreecommitdiff
path: root/src/or/rendmid.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-04-05 07:41:31 +0000
committerRoger Dingledine <arma@torproject.org>2004-04-05 07:41:31 +0000
commit5b6099e8a2197a04e8c2e0fe8586471711bbd3f1 (patch)
tree2b2a3c18cd25e25463b942cb0e7e4ef252ccf4ff /src/or/rendmid.c
parentd70063578d331769bbed3d61fd94c484e67e46bc (diff)
downloadtor-5b6099e8a2197a04e8c2e0fe8586471711bbd3f1.tar.gz
tor-5b6099e8a2197a04e8c2e0fe8586471711bbd3f1.zip
more alice-side infrastructure
handle rendezvous acks, do rend begin cells right, send an introduction cell (sort of) receive a rendezvous2 cell (sort of) svn:r1475
Diffstat (limited to 'src/or/rendmid.c')
-rw-r--r--src/or/rendmid.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/rendmid.c b/src/or/rendmid.c
index fa24aed7ea..fd3ee54b0a 100644
--- a/src/or/rendmid.c
+++ b/src/or/rendmid.c
@@ -111,14 +111,14 @@ rend_mid_introduce(circuit_t *circ, const char *request, int request_len)
char hexid[9];
if (circ->purpose != CIRCUIT_PURPOSE_OR || circ->n_conn) {
- log_fn(LOG_WARN, "Rejecting INTRODUCE2 on non-OR or non-edge circuit %d",
+ log_fn(LOG_WARN, "Rejecting INTRODUCE1 on non-OR or non-edge circuit %d",
circ->p_circ_id);
goto err;
}
if (request_len < 276) {
log_fn(LOG_WARN,
- "Impossibly short INTRODUCE2 cell on circuit %d; dropping.",
+ "Impossibly short INTRODUCE1 cell on circuit %d; dropping.",
circ->p_circ_id);
goto err;
}
@@ -130,7 +130,7 @@ rend_mid_introduce(circuit_t *circ, const char *request, int request_len)
NULL, request, CIRCUIT_PURPOSE_INTRO_POINT);
if (!intro_circ) {
log_fn(LOG_WARN,
- "No intro circ found for INTRODUCE2 cell (%s) from circuit %d; dropping",
+ "No intro circ found for INTRODUCE1 cell (%s) from circuit %d; dropping",
hexid, circ->p_circ_id);
goto err;
}