diff options
author | Simon Josefsson <simon@josefsson.org> | 2007-08-08 23:08:50 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2007-08-08 23:08:50 +0200 |
commit | d1876e59bbe226921af181e73d725e0bdbbc3dea (patch) | |
tree | ff0b9e41bfd4d2cc728ba686ae708b1f6d35cdb6 /lib | |
parent | 3984c2f3347515ebb78ca06f0f97bfc4fabe77f0 (diff) | |
download | gnutls-d1876e59bbe226921af181e73d725e0bdbbc3dea.tar.gz |
Disable TLS 1.2 by default, at least until RFC is out and we've done
simple interop of it.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gnutls_priority.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_priority.c b/lib/gnutls_priority.c index 339007f6f7..8acb903826 100644 --- a/lib/gnutls_priority.c +++ b/lib/gnutls_priority.c @@ -275,7 +275,7 @@ int gnutls_set_default_priority (gnutls_session_t session) { static const int protocol_priority[] = { - GNUTLS_TLS1_2, + /* GNUTLS_TLS1_2, -- not finalized yet! */ GNUTLS_TLS1_1, GNUTLS_TLS1_0, GNUTLS_SSL3, |