From fa92909d0d39c1cf7cec2abad598f866729e6889 Mon Sep 17 00:00:00 2001 From: "Jan Alexander Steffens (heftig)" Date: Mon, 5 Nov 2018 12:26:26 +0100 Subject: [PATCH] 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 --- ext/dtls/gstdtlsconnection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/dtls/gstdtlsconnection.c b/ext/dtls/gstdtlsconnection.c index 88a3270509..6b47460d56 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); }