Changeset 3684
- Timestamp:
- 06/14/06 11:23:57 (2 years ago)
- Files:
-
- torment/trunk/src/or/connection_edge.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
torment/trunk/src/or/connection_edge.c
r3683 r3684 280 280 in.s_addr = htonl(conn->addr); 281 281 tor_inet_ntoa(&in,valbuf,sizeof(valbuf)); 282 log_ notice(LD_EXIT,"Exit connection to %s:%u (%s) established.",282 log_info(LD_EXIT,"Exit connection to %s:%u (%s) established.", 283 283 escaped_safe_str(conn->address),conn->port,safe_str(valbuf)); 284 284 … … 1752 1752 if (!connection_edge_is_rendezvous_stream(conn) && 1753 1753 router_compare_to_my_exit_policy(conn)) { 1754 log_ notice(LD_EXIT,"%s:%d failed exit policy. Closing.",1754 log_info(LD_EXIT,"%s:%d failed exit policy. Closing.", 1755 1755 escaped_safe_str(conn->address), conn->port); 1756 1756 connection_edge_end(conn, END_STREAM_REASON_EXITPOLICY, conn->cpath_layer); … … 1774 1774 in.s_addr = htonl(addr); 1775 1775 tor_inet_ntoa(&in, tmpbuf, sizeof(tmpbuf)); 1776 log_ notice(LD_EXIT, "Redirecting connection from %s:%d to %s:%d",1776 log_info(LD_EXIT, "Redirecting connection from %s:%d to %s:%d", 1777 1777 escaped_safe_str(conn->address), conn->port, 1778 1778 safe_str(tmpbuf), port);
