diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-17 22:58:20 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-17 22:58:20 +0000 |
commit | 6693f3253097326abe3a57469690330cd73d2456 (patch) | |
tree | 76e53f5552b311e651cf70c6324370cad1e53ebe /src/common/tortls.c | |
parent | 2ad36f68c8e5bbbc0f284c04f266f80866d2aef9 (diff) | |
download | tor-6693f3253097326abe3a57469690330cd73d2456.tar.gz tor-6693f3253097326abe3a57469690330cd73d2456.zip |
Resolve many DOCDOCs.
svn:r17662
Diffstat (limited to 'src/common/tortls.c')
-rw-r--r-- | src/common/tortls.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index 1032a53f25..ec59d67ae6 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -1442,7 +1442,11 @@ tor_tls_used_v1_handshake(tor_tls_t *tls) return 1; } -/** DOCDOC */ +/** Examine the amount of memory used and available for buffers in <b>tls</b>. + * Set *<b>rbuf_capacity</b> to the amount of storage allocated for the read + * buffer and *<b>rbuf_bytes</b> to the amount actually used. + * Set *<b>wbuf_capacity</b> to the amount of storage allocated for the write + * buffer and *<b>wbuf_bytes</b> to the amount actually used. */ void tor_tls_get_buffer_sizes(tor_tls_t *tls, int *rbuf_capacity, int *rbuf_bytes, |