summaryrefslogtreecommitdiff
path: root/doc/tex/serv1.tex
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2001-12-07 01:02:14 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2001-12-07 01:02:14 +0000
commitfe9a5536f79d2d34dca6186ce6356b2c71355644 (patch)
tree29e11cb97686e58883653de14147686e830cd010 /doc/tex/serv1.tex
parent3b205dfa87e946f28b255ac6b0dd49d08583cf77 (diff)
downloadgnutls-fe9a5536f79d2d34dca6186ce6356b2c71355644.tar.gz
GNUTLS_KX_RSA renamed to GNUTLS_KX_X509PKI_RSA (and the other X509 key
exchange methods). This will allow GNUTLS_KX_PGP_RSA etc.
Diffstat (limited to 'doc/tex/serv1.tex')
-rw-r--r--doc/tex/serv1.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tex/serv1.tex b/doc/tex/serv1.tex
index 7d2ef42613..88fbd6dff7 100644
--- a/doc/tex/serv1.tex
+++ b/doc/tex/serv1.tex
@@ -38,7 +38,7 @@ GNUTLS_STATE initialize_state()
GNUTLS_STATE state;
int ret;
const int protocol_priority[] = { GNUTLS_TLS1, GNUTLS_SSL3, 0 };
- const int kx_priority[] = { GNUTLS_KX_RSA, GNUTLS_KX_DHE_RSA, GNUTLS_KX_SRP, 0 };
+ const int kx_priority[] = { GNUTLS_KX_X509PKI_RSA, GNUTLS_KX_X509PKI_DHE_RSA, GNUTLS_KX_SRP, 0 };
const int cipher_priority[] = { GNUTLS_CIPHER_RIJNDAEL_CBC, GNUTLS_CIPHER_3DES_CBC, 0};
const int comp_priority[] = { GNUTLS_COMP_ZLIB, GNUTLS_COMP_NULL, 0 };
const int mac_priority[] = { GNUTLS_MAC_SHA, GNUTLS_MAC_MD5, 0 };