summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-08-22 10:02:47 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-08-22 10:02:47 +0000
commit9438ffb0db2633347b839b6220522978e6963cdd (patch)
tree904eaa201c89ecd22e497e27fb681040364ad6df
parented9141fa3ba883e7e1a05db8f3c51cfdc0615b75 (diff)
downloadgnutls-9438ffb0db2633347b839b6220522978e6963cdd.tar.gz
gnutls_handshake_set_exportable_detection() was obsoleted.
-rw-r--r--lib/gnutls.h.in.in1
-rw-r--r--lib/gnutls_int_compat.c5
-rw-r--r--src/serv.c2
3 files changed, 5 insertions, 3 deletions
diff --git a/lib/gnutls.h.in.in b/lib/gnutls.h.in.in
index af00cb4935..b9544b340a 100644
--- a/lib/gnutls.h.in.in
+++ b/lib/gnutls.h.in.in
@@ -160,7 +160,6 @@ const char* gnutls_strerror( int error);
*/
void gnutls_handshake_set_private_extensions(GNUTLS_STATE state, int allow);
void gnutls_record_set_cbc_protection(GNUTLS_STATE state, int prot);
-void gnutls_handshake_set_exportable_detection(GNUTLS_STATE state, int det);
void gnutls_handshake_set_rsa_pms_check(GNUTLS_STATE state, int check);
/* Record layer functions.
diff --git a/lib/gnutls_int_compat.c b/lib/gnutls_int_compat.c
index 59fbfda07e..b6fb2f50f1 100644
--- a/lib/gnutls_int_compat.c
+++ b/lib/gnutls_int_compat.c
@@ -5,9 +5,12 @@
*/
#define GNUTLS_BACKWARDS_COMPATIBLE
-
#ifdef GNUTLS_BACKWARDS_COMPATIBLE
+void gnutls_handshake_set_exportable_detection(GNUTLS_STATE state, int det)
+{
+ return;
+}
/* nothing here */
diff --git a/src/serv.c b/src/serv.c
index c256a9eaa1..e6bf0eedda 100644
--- a/src/serv.c
+++ b/src/serv.c
@@ -201,7 +201,7 @@ int kx_priority[16] =
};
int cipher_priority[16] =
{ GNUTLS_CIPHER_RIJNDAEL_128_CBC, GNUTLS_CIPHER_3DES_CBC,
- GNUTLS_CIPHER_ARCFOUR, 0
+ GNUTLS_CIPHER_ARCFOUR, GNUTLS_CIPHER_ARCFOUR_EXPORT, 0
};
int comp_priority[16] = { GNUTLS_COMP_ZLIB, GNUTLS_COMP_NULL, 0 };