[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] make circuit-building less noisy when a node in your exclud...
- To: or-cvs@freehaven.net
- Subject: [or-cvs] make circuit-building less noisy when a node in your exclud...
- From: arma@seul.org (Roger Dingledine)
- Date: Tue, 2 Mar 2004 22:02:08 -0500 (EST)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Tue, 02 Mar 2004 22:02:24 -0500
- Reply-to: or-dev@freehaven.net
- Sender: owner-or-cvs@freehaven.net
Update of /home/or/cvsroot/src/or
In directory moria.mit.edu:/home2/arma/work/onion/cvs/src/or
Modified Files:
onion.c or.h
Log Message:
make circuit-building less noisy when a node in your exclude/exit/entrynodes is down
Index: onion.c
===================================================================
RCS file: /home/or/cvsroot/src/or/onion.c,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -d -r1.128 -r1.129
--- onion.c 29 Feb 2004 01:31:32 -0000 1.128
+++ onion.c 3 Mar 2004 03:02:06 -0000 1.129
@@ -176,7 +176,7 @@
if (router->is_running)
smartlist_add(sl,router);
else
- log_fn(LOG_WARN,"Nickname list includes '%s' which is known but down.",nick);
+ log_fn(LOG_INFO,"Nickname list includes '%s' which is known but down.",nick);
} else
log_fn(has_fetched_directory ? LOG_WARN : LOG_INFO,
"Nickname list includes '%s' which isn't a known router.",nick);
Index: or.h
===================================================================
RCS file: /home/or/cvsroot/src/or/or.h,v
retrieving revision 1.240
retrieving revision 1.241
diff -u -d -r1.240 -r1.241
--- or.h 2 Mar 2004 17:48:17 -0000 1.240
+++ or.h 3 Mar 2004 03:02:06 -0000 1.241
@@ -148,7 +148,7 @@
#define EXIT_CONN_STATE_RESOLVING 1 /* waiting for response from dns farm */
#define EXIT_CONN_STATE_CONNECTING 2 /* waiting for connect() to finish */
#define EXIT_CONN_STATE_OPEN 3
-#define EXIT_CONN_STATE_RESOLVEFAILED 4 /* waiting to be remoed*/
+#define EXIT_CONN_STATE_RESOLVEFAILED 4 /* waiting to be removed */
#define _EXIT_CONN_STATE_MAX 4
#if 0
#define EXIT_CONN_STATE_CLOSE 3 /* flushing the buffer, then will close */