diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-02-16 20:39:37 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-02-16 20:39:37 +0000 |
commit | d2893398f6c98f4ad82f05c41fb9ca40c5020015 (patch) | |
tree | 1600a6f6ab31cff26dd6a3c4710a3fd1cd5e530f /src/common/tortls.c | |
parent | a3ec172e1ac0e1ae2b2a09c05edb4e7f2fef4a1e (diff) | |
download | tor-d2893398f6c98f4ad82f05c41fb9ca40c5020015.tar.gz tor-d2893398f6c98f4ad82f05c41fb9ca40c5020015.zip |
r11832@catbus: nickm | 2007-02-16 15:31:59 -0500
Fix 35 remaining DOCDOC comments. Yowza.
svn:r9596
Diffstat (limited to 'src/common/tortls.c')
-rw-r--r-- | src/common/tortls.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index 365af60681..e8984603d1 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -103,7 +103,8 @@ tls_log_errors(int severity, const char *doing) } } -/** DOCDOC */ +/** Convert an errno (or a WSAerrno on windows) into a TOR_TLS_* error + * code. */ static int tor_errno_to_tls_error(int e) { @@ -206,7 +207,7 @@ tor_tls_init(void) } } -/** DOCDOC */ +/** Free all global TLS structures. */ void tor_tls_free_all(void) { @@ -672,7 +673,7 @@ tor_tls_peer_has_cert(tor_tls_t *tls) return 1; } -/** DOCDOC */ +/** Warn that a certificate lifetime extends through a certain range. */ static void log_cert_lifetime(X509 *cert, const char *problem) { |