diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-02-06 22:25:04 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-02-09 22:28:58 +0100 |
commit | 62d15f159e163bf4e1a27ac1b0ffd9b84e02bf56 (patch) | |
tree | 814274226306bf3baeeeef30c5baa2aadd50f9a4 /src/tool_cfgable.h | |
parent | 2a699bc6e94b8223d900e8880ad628aebf17ab6d (diff) | |
download | curl-62d15f159e163bf4e1a27ac1b0ffd9b84e02bf56.tar.gz |
--ssl-allow-beast added
This new option tells curl to not work around a security flaw in the
SSL3 and TLS1.0 protocols. It uses the new libcurl option
CURLOPT_SSL_OPTIONS with the CURLSSLOPT_ALLOW_BEAST bit set.
Diffstat (limited to 'src/tool_cfgable.h')
-rw-r--r-- | src/tool_cfgable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tool_cfgable.h b/src/tool_cfgable.h index adbb44627..6e66191ae 100644 --- a/src/tool_cfgable.h +++ b/src/tool_cfgable.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -195,7 +195,7 @@ struct Configurable { bool xattr; /* store metadata in extended attributes */ long gssapi_delegation; - + bool ssl_allow_beast; /* allow this SSL vulnerability */ }; /* struct Configurable */ void free_config_fields(struct Configurable *config); |