diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2016-12-19 16:15:50 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2016-12-19 16:18:47 +0100 |
commit | 045d5c049d84e71fa8a46d52cc01ab530c4932c8 (patch) | |
tree | 213a4da944270d7b8ea033ae5a8959b9190e2bf9 | |
parent | 1c7c47c17140611abdf4a0f437195cb6d4e68925 (diff) | |
download | gnutls-045d5c049d84e71fa8a46d52cc01ab530c4932c8.tar.gz |
doc update [ci skip]
-rw-r--r-- | lib/priority.c | 18 | ||||
-rw-r--r-- | lib/state.c | 2 |
2 files changed, 17 insertions, 3 deletions
diff --git a/lib/priority.c b/lib/priority.c index 6bc8b9b656..c0c4b4ade4 100644 --- a/lib/priority.c +++ b/lib/priority.c @@ -1480,7 +1480,8 @@ void gnutls_priority_deinit(gnutls_priority_t priority_cache) * priority cache and is used to directly set string priorities to a * TLS session. For documentation check the gnutls_priority_init(). * - * To simply use a reasonable default, consider using gnutls_set_default_priority(). + * To use a reasonable default, consider using gnutls_set_default_priority(), + * instead of this function. * * Returns: On syntax error %GNUTLS_E_INVALID_REQUEST is returned, * %GNUTLS_E_SUCCESS on success, or an error code. @@ -1543,10 +1544,21 @@ break_list(char *list, * @session: is a #gnutls_session_t type. * * Sets the default priority on the ciphers, key exchange methods, - * macs and compression methods. For more fine-tuning you could - * use gnutls_priority_set_direct() or gnutls_priority_set() instead. + * macs and compression methods. This is the recommended method of + * setting the defaults, in order to promote consistency between applications + * using GnuTLS, and to allow GnuTLS using applications to update settings + * in par with the library. For client applications which require + * maximum compatibility consider calling gnutls_session_enable_compatibility_mode() + * after this function. + * + * To allow a user to override the defaults (e.g., when a user interface + * or configuration file is available), the functions + * gnutls_priority_set_direct() or gnutls_priority_set() can + * be used. * * Returns: %GNUTLS_E_SUCCESS on success, or an error code. + * + * Since: 2.1.4 **/ int gnutls_set_default_priority(gnutls_session_t session) { diff --git a/lib/state.c b/lib/state.c index b765142afa..01cdd2b669 100644 --- a/lib/state.c +++ b/lib/state.c @@ -1016,6 +1016,8 @@ gnutls_handshake_set_post_client_hello_function(gnutls_session_t session, * * Note that this function must be called after any call to gnutls_priority * functions. + * + * Since: 2.1.4 **/ void gnutls_session_enable_compatibility_mode(gnutls_session_t session) { |