]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
gnutls_record_overhead_size2 -> gnutls_est_record_overhead_size
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sun, 30 Jun 2013 07:27:09 +0000 (09:27 +0200)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Wed, 3 Jul 2013 06:30:12 +0000 (08:30 +0200)
NEWS
lib/gnutls_dtls.c
lib/includes/gnutls/gnutls.h.in

diff --git a/NEWS b/NEWS
index c064f2256530d683221e68d562c803fb0e5d3ac8..8ff724e6e66ac3c9a6ab4febd76e3ad2c92e4f3b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -17,7 +17,7 @@ GNUTLS_NO_REPLAY_PROTECTION: Added
 gnutls_certificate_set_trust_list: Added
 gnutls_cipher_get_tag_size: Added
 gnutls_record_overhead_size: Added
-gnutls_record_overhead_size2: Added
+gnutls_est_record_overhead_size: Added
 gnutls_handshake_set_hook_function: Added
 gnutls_handshake_description_get_name: Added
 
index 15909830bc570cc41a603840ed8f190874715cf5..988e4c1b9ca9fb91b6e0ded60c11dd6ccbb549f3 100644 (file)
@@ -625,7 +625,7 @@ int t, ret;
 }  
 
 /**
- * gnutls_record_overhead_size2:
+ * gnutls_est_record_overhead_size:
  * @version: is a #gnutls_protocol_t value
  * @cipher: is a #gnutls_cipher_algorithm_t value
  * @mac: is a #gnutls_mac_algorithm_t value
@@ -642,7 +642,7 @@ int t, ret;
  *
  * Since: 3.2.2
  **/
-size_t gnutls_record_overhead_size2 (gnutls_protocol_t version, gnutls_cipher_algorithm_t cipher,
+size_t gnutls_est_record_overhead_size (gnutls_protocol_t version, gnutls_cipher_algorithm_t cipher,
                                     gnutls_mac_algorithm_t mac, gnutls_compression_method_t comp, 
                                     unsigned int flags)
 {
index 69a435b7e8ce3a084e3cad0794c14e4496de2384..aae7adea524719af219f4248bf6de686d4a8ca58 100644 (file)
@@ -938,7 +938,7 @@ gnutls_ecc_curve_t gnutls_ecc_curve_get(gnutls_session_t session);
 
   size_t gnutls_record_overhead_size (gnutls_session_t session);
 
-  size_t gnutls_record_overhead_size2 (gnutls_protocol_t version, 
+  size_t gnutls_est_record_overhead_size (gnutls_protocol_t version, 
                                       gnutls_cipher_algorithm_t cipher,
                                       gnutls_mac_algorithm_t mac, 
                                       gnutls_compression_method_t comp,