[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Jan 23 02:39:44.856 [warn] rend_mid_rendezvous(): Rejecting...
Update of /home2/or/cvsroot/tor/src/or
In directory moria:/home/arma/work/onion/cvs/tor/src/or
Modified Files:
rendmid.c
Log Message:
Jan 23 02:39:44.856 [warn] rend_mid_rendezvous(): Rejecting RENDEZVOUS1 cell with unrecognized rendezvous cookie AFC097FD.
This is not anything that the server admin can deal with, so don't
complain this loudly.
Index: rendmid.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/rendmid.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -p -d -r1.47 -r1.48
--- rendmid.c 5 Jan 2006 21:23:03 -0000 1.47
+++ rendmid.c 23 Jan 2006 09:26:22 -0000 1.48
@@ -31,7 +31,7 @@ rend_mid_establish_intro(circuit_t *circ
"Received an ESTABLISH_INTRO request on circuit %d", circ->p_circ_id);
if (circ->purpose != CIRCUIT_PURPOSE_OR || circ->n_conn) {
- warn(LD_PROTOCOL,
+ log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
"Rejecting ESTABLISH_INTRO on non-OR or non-edge circuit.");
reason = END_CIRC_REASON_TORPROTOCOL;
goto err;
@@ -266,7 +266,7 @@ rend_mid_rendezvous(circuit_t *circ, con
}
if (request_len != REND_COOKIE_LEN+DH_KEY_LEN+DIGEST_LEN) {
- warn(LD_PROTOCOL,
+ log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
"Rejecting RENDEZVOUS1 cell with bad length (%d) on circuit %d.",
(int)request_len, circ->p_circ_id);
reason = END_CIRC_REASON_TORPROTOCOL;
@@ -275,7 +275,7 @@ rend_mid_rendezvous(circuit_t *circ, con
rend_circ = circuit_get_rendezvous(request);
if (!rend_circ) {
- warn(LD_PROTOCOL,
+ log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
"Rejecting RENDEZVOUS1 cell with unrecognized rendezvous cookie %s.",
hexid);
reason = END_CIRC_REASON_TORPROTOCOL;