Andreas Rieke added extra infof() for when a connection is not re-used due to
authorDaniel Stenberg <daniel@haxx.se>
Sun, 28 Jan 2007 22:45:22 +0000 (22:45 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 28 Jan 2007 22:45:22 +0000 (22:45 +0000)
SSL conditions not being the same

lib/url.c

index 01751a3..bc896b3 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -2047,6 +2047,10 @@ ConnectionExists(struct SessionHandle *data,
              ssl options as well */
           if(!Curl_ssl_config_matches(&needle->ssl_config,
                                       &check->ssl_config)) {
+            infof(data,
+                  "Connection #%ld has different SSL parameters, "
+                  "can't reuse\n",
+                  check->connectindex );
             continue;
           }
         }