diff options
author | Roger Dingledine <arma@torproject.org> | 2003-09-08 10:46:19 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-09-08 10:46:19 +0000 |
commit | 1a9b5f9de9fd6b3b6d625e0374f31e7d665b9ef2 (patch) | |
tree | fea2efc8a03394dcda2522b141f0ee03ce9218bf /src | |
parent | a6a5784bcaae042ba931a98a64b227e9a5a38157 (diff) | |
download | tor-1a9b5f9de9fd6b3b6d625e0374f31e7d665b9ef2.tar.gz tor-1a9b5f9de9fd6b3b6d625e0374f31e7d665b9ef2.zip |
another wishlist function for the tls interface
svn:r433
Diffstat (limited to 'src')
-rw-r--r-- | src/common/tortls.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/tortls.h b/src/common/tortls.h index 3cd9ea337c..93a65daa6d 100644 --- a/src/common/tortls.h +++ b/src/common/tortls.h @@ -24,6 +24,11 @@ int tor_tls_read(tor_tls *tls, char *cp, int len); int tor_tls_write(tor_tls *tls, char *cp, int n); int tor_tls_handshake(tor_tls *tls); /* XXXX we need a function to check for validated, verified peer certs. */ +/* XXXX i would also very much like a function to tell me who i just + * handshaked with. maybe a nickname, and from there i can look + * up a router entry? and maybe one day a function to make sure the cert + * doesn't disagree too much with the router entry. + */ int tor_tls_shutdown(tor_tls *tls); #endif |