summaryrefslogtreecommitdiff
path: root/socket/udp-bsd.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket/udp-bsd.c')
-rw-r--r--socket/udp-bsd.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/socket/udp-bsd.c b/socket/udp-bsd.c
index 3fac544..70cd0ab 100644
--- a/socket/udp-bsd.c
+++ b/socket/udp-bsd.c
@@ -50,6 +50,7 @@
#include <fcntl.h>
#include "udp-bsd.h"
+#include "agent-priv.h"
#ifndef G_OS_WIN32
#include <unistd.h>
@@ -275,8 +276,12 @@ socket_send_message (NiceSocket *sock, const NiceAddress *to,
message->n_buffers, NULL, 0, G_SOCKET_MSG_NONE, NULL, &child_error);
if (len < 0) {
- if (g_error_matches (child_error, G_IO_ERROR, G_IO_ERROR_WOULD_BLOCK))
+ if (g_error_matches (child_error, G_IO_ERROR, G_IO_ERROR_WOULD_BLOCK)) {
len = 0;
+ } else {
+ nice_debug_verbose ("%s: udp-bsd socket %p: error: %s", G_STRFUNC, sock,
+ child_error->message);
+ }
g_error_free (child_error);
}