|
@@ -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;
|