gnutls-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU gnutls branch, master, updated. gnutls_3_0_7-49-g41a73fb


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_3_0_7-49-g41a73fb
Date: Thu, 10 Nov 2011 08:21:36 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU gnutls".

http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=41a73fb4a147dc4773d4b546d5d8b5cfdae255d9

The branch, master has been updated
       via  41a73fb4a147dc4773d4b546d5d8b5cfdae255d9 (commit)
      from  a333d71762903ff5b716d1e3967017b1baf61bd2 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 41a73fb4a147dc4773d4b546d5d8b5cfdae255d9
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Thu Nov 10 09:23:11 2011 +0100

    dropped packets are also reported on gnutls_deinit() to ensure that they 
are not lost.

-----------------------------------------------------------------------

Summary of changes:
 lib/gnutls_state.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/lib/gnutls_state.c b/lib/gnutls_state.c
index 3c12508..43602cc 100644
--- a/lib/gnutls_state.c
+++ b/lib/gnutls_state.c
@@ -425,6 +425,10 @@ gnutls_deinit (gnutls_session_t session)
   if (session == NULL)
     return;
 
+  if (IS_DTLS(session) && session->internals.dtls.packets_dropped > 0)
+    _gnutls_audit_log(session, "Discarded %u messages (duplicates or invalid 
decryption)\n", 
+                      (unsigned int)session->internals.dtls.packets_dropped);
+
   /* remove auth info firstly */
   _gnutls_free_auth_info (session);
 


hooks/post-receive
-- 
GNU gnutls



reply via email to

[Prev in Thread] Current Thread [Next in Thread]