[glib-networking/wip/pwithnall/dtls: 10/21] gnutls: Convert MTU-exceeded errors



commit 48e4d8bd0c6a78427804d2395dad82ded812a774
Author: Olivier CrĂȘte <olivier crete collabora com>
Date:   Fri Mar 29 18:43:22 2013 -0400

    gnutls: Convert MTU-exceeded errors
    
    This is necessary for handling DTLS datagrams, as GnuTLS enforces an MTU
    on them.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=697908

 tls/gnutls/gtlsconnection-gnutls.c |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)
---
diff --git a/tls/gnutls/gtlsconnection-gnutls.c b/tls/gnutls/gtlsconnection-gnutls.c
index c8a6a07..3666d7e 100644
--- a/tls/gnutls/gtlsconnection-gnutls.c
+++ b/tls/gnutls/gtlsconnection-gnutls.c
@@ -26,6 +26,7 @@
 #include <errno.h>
 #include <stdarg.h>
 #include <gnutls/gnutls.h>
+#include <gnutls/dtls.h>
 #include <gnutls/x509.h>
 
 #include "gtlsconnection-gnutls.h"
@@ -869,6 +870,14 @@ end_gnutls_io (GTlsConnectionGnutls  *gnutls,
                            _("TLS connection peer did not send a certificate"));
       return status;
     }
+  else if (status == GNUTLS_E_LARGE_PACKET)
+    {
+      g_set_error (error, G_IO_ERROR, G_IO_ERROR_MESSAGE_TOO_LARGE,
+                   _("Message is too large for DTLS connection; maximum is "
+                     "%u bytes"),
+                   gnutls_dtls_get_data_mtu (gnutls->priv->session));
+      return status;
+    }
 
   if (error)
     {
@@ -1099,6 +1108,8 @@ set_gnutls_error (GTlsConnectionGnutls *gnutls,
     gnutls_transport_set_errno (gnutls->priv->session, EINTR);
   else if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_TIMED_OUT))
     gnutls_transport_set_errno (gnutls->priv->session, EINTR);
+  else if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_MESSAGE_TOO_LARGE))
+    gnutls_transport_set_errno (gnutls->priv->session, EMSGSIZE);
   else
     gnutls_transport_set_errno (gnutls->priv->session, EIO);
 }


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