Archived
1
0
Fork 0

Taking advantage of the new TLS debugging capabilities

This commit is contained in:
Julien Dessaux 2011-11-03 18:52:20 +01:00
parent cc8053fc80
commit 7840059d8d
3 changed files with 7 additions and 3 deletions

View file

@ -64,6 +64,8 @@ initTLSEnv :: TLSConfig -> IO TLSParams
initTLSEnv ssl = do
let versions = sslVersions ssl
ciphers = sslCiphers ssl
logging = sslLogging ssl
return $ defaultParams { pAllowedVersions = versions
, pCiphers = ciphers }
, pCiphers = ciphers
, pLogging = logging }