summaryrefslogtreecommitdiff
path: root/ext/dtls
diff options
context:
space:
mode:
authorJan Alexander Steffens (heftig) <jsteffens@make.tv>2018-11-05 12:26:26 +0100
committerSebastian Dröge <slomo@coaxion.net>2018-11-06 16:23:50 +0000
commitfa92909d0d39c1cf7cec2abad598f866729e6889 (patch)
treeb0a240934b1fa1786c1fc2416b1374f384980bae /ext/dtls
parenta9b9994738e46d3bae497ec65acd9a729707e5c6 (diff)
downloadgstreamer-plugins-bad-fa92909d0d39c1cf7cec2abad598f866729e6889.tar.gz
dtlsconnection: Lower BIO error log level to DEBUG
Periodic SSL_ERROR_SYSCALL errors with errno == 0 seem to be normal behavior for DTLS connections. Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/issues/677
Diffstat (limited to 'ext/dtls')
-rw-r--r--ext/dtls/gstdtlsconnection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dtls/gstdtlsconnection.c b/ext/dtls/gstdtlsconnection.c
index 88a327050..6b47460d5 100644
--- a/ext/dtls/gstdtlsconnection.c
+++ b/ext/dtls/gstdtlsconnection.c
@@ -733,7 +733,7 @@ openssl_poll (GstDtlsConnection * self)
if (ret == 0) {
GST_DEBUG_OBJECT (self, "do_handshake encountered EOF");
} else if (ret == -1) {
- GST_WARNING_OBJECT (self, "do_handshake encountered BIO error");
+ GST_DEBUG_OBJECT (self, "do_handshake encountered BIO error");
} else {
GST_DEBUG_OBJECT (self, "do_handshake returned %d", ret);
}