]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
another wishlist function for the tls interface
authorRoger Dingledine <arma@torproject.org>
Mon, 8 Sep 2003 10:46:19 +0000 (10:46 +0000)
committerRoger Dingledine <arma@torproject.org>
Mon, 8 Sep 2003 10:46:19 +0000 (10:46 +0000)
svn:r433

src/common/tortls.h

index 3cd9ea337c2f1e83466bd0584242baa736a35e99..93a65daa6d7b0464106c4370d3086a2f4bb61c57 100644 (file)
@@ -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