and other debugs

svn:r1722
This commit is contained in:
Roger Dingledine 2004-04-26 22:22:18 +00:00
parent 719bb5c0f3
commit e34c201bb3

View File

@ -217,6 +217,9 @@ int read_to_buf_tls(tor_tls *tls, int at_most, buf_t *buf) {
tor_assert(tls);
assert_buf_ok(buf);
log_fn(LOG_DEBUG,"start: %d on buf, %d pending, at_most %d.",(int)buf_datalen(buf),
tor_tls_get_pending_bytes(tls), at_most);
if (buf_ensure_capacity(buf, at_most+buf->datalen))
return -1;
@ -226,6 +229,8 @@ int read_to_buf_tls(tor_tls *tls, int at_most, buf_t *buf) {
if (at_most == 0)
return 0;
log_fn(LOG_DEBUG,"before: %d on buf, %d pending, at_most %d.",(int)buf_datalen(buf),
tor_tls_get_pending_bytes(tls), at_most);
r = tor_tls_read(tls, buf->mem+buf->datalen, at_most);
if (r<0)
return r;