]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
add a note from wanoskarnet
authorRoger Dingledine <arma@torproject.org>
Sun, 8 Jan 2012 14:03:03 +0000 (09:03 -0500)
committerRoger Dingledine <arma@torproject.org>
Sun, 8 Jan 2012 14:03:03 +0000 (09:03 -0500)
he disagrees about what the code that we decided not to use would do

src/common/tortls.c

index ef61f71b3db072e4972897695f9f28e58ff52b9a..37074decfdf19e5b6dbe6cf0470dab8a28cfa845 100644 (file)
@@ -781,6 +781,11 @@ tor_tls_context_new(crypto_pk_env_t *identity, unsigned int key_lifetime,
    * with clients that are configured to use SSLv23_method(), so we should
    * probably never use it.
    */
+  /* XXX wanoskarnet says this comment is bunk -- that even if we turn
+   * this line on, clients configured to use SSLv23 would still able to
+   * talk to us. But he also says it's ok to leave it out. I suggest we
+   * delete this whole clause (the one that's #if 0'ed out). I'll leave
+   * it in place until Nick expresses an opinion. -RD */
   if (!(result->ctx = SSL_CTX_new(TLSv1_method())))
     goto error;
 #endif