diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2007-01-28 22:45:22 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2007-01-28 22:45:22 +0000 | 
| commit | 1f4c8c4f0931ceb1afc11e6d5310d4d8e953b0a8 (patch) | |
| tree | 51acdbaba6d9975fd0e8e92d09ee57c631798bfd /lib | |
| parent | 8162b32bad2c0a5d3b771444d77825d752c4af66 (diff) | |
Andreas Rieke added extra infof() for when a connection is not re-used due to
SSL conditions not being the same
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/url.c | 4 | 
1 files changed, 4 insertions, 0 deletions
@@ -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;            }          }  | 
