diff options
author | Roger Dingledine <arma@torproject.org> | 2002-07-19 18:48:28 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2002-07-19 18:48:28 +0000 |
commit | 5c0edf6d547fea93296bedd7a62f2b45e375d80a (patch) | |
tree | d9289b464c86b0ab19ef11b01163a7aa27bda789 /src/or/connection.c | |
parent | fc0e2a34ec79750df0a6dbef6599e26e956321a9 (diff) | |
download | tor-5c0edf6d547fea93296bedd7a62f2b45e375d80a.tar.gz tor-5c0edf6d547fea93296bedd7a62f2b45e375d80a.zip |
Folded cell.? into src/or
svn:r64
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index e13ec348ad..aca385ffba 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -621,14 +621,14 @@ int connection_consider_sending_sendme(connection_t *conn) { if(circ->n_conn == conn) { /* we're at an exit */ if(circ->p_receive_window < RECEIVE_WINDOW_START-RECEIVE_WINDOW_INCREMENT) { - log(LOG_DEBUG,"connection_consider_sending_sendme(): Queueing sendme back."); + log(LOG_DEBUG,"connection_consider_sending_sendme(): Outbuf %d, Queueing sendme back.", conn->outbuf_flushlen); circ->p_receive_window += RECEIVE_WINDOW_INCREMENT; sendme.aci = circ->p_aci; return connection_write_cell_to_buf(&sendme, circ->p_conn); /* (clobbers sendme) */ } } else { /* we're at an AP */ if(circ->n_receive_window < RECEIVE_WINDOW_START-RECEIVE_WINDOW_INCREMENT) { - log(LOG_DEBUG,"connection_consider_sending_sendme(): Queueing sendme forward."); + log(LOG_DEBUG,"connection_consider_sending_sendme(): Outbuf %d, Queueing sendme forward.", conn->outbuf_flushlen); circ->n_receive_window += RECEIVE_WINDOW_INCREMENT; sendme.aci = circ->n_aci; return connection_write_cell_to_buf(&sendme, circ->n_conn); /* (clobbers sendme) */ |