Any suggestions as to what might be needed here, can the SSLv3_method
just be replaced with SSLv23_method?

http://bazaar.launchpad.net/~squid/squid/3.5/view/head:/src/ssl/bio.cc#L1009

|       ciphers += 2;
|       if (ciphersLen) {
|           const SSL_METHOD *method = SSLv3_method();
                                       ^^^^^^^^^^^^
|           const int cs = method->put_cipher_by_char(NULL, NULL);
|           assert(cs > 0);
|           for (size_t i = 0; i < ciphersLen; i += cs) {
|               const SSL_CIPHER *c = method->get_cipher_by_char((ciphers + i));
|               if (c != NULL) {
|                   if (!clientRequestedCiphers.empty())
|                       clientRequestedCiphers.append(":");
|                   clientRequestedCiphers.append(c->name);
|               } else
|                   unknownCiphers = true;
|           }
|       }
|       debugs(83, 7, "Ciphers requested by client: " << 
clientRequestedCiphers);

Reply via email to