We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15eee61 commit e8502b9Copy full SHA for e8502b9
lib/ex_webrtc/dtls_transport.ex
@@ -267,6 +267,13 @@ defmodule ExWebRTC.DTLSTransport do
267
# packets to retransmit have to be the same as dtls_buffered_packets
268
Process.send_after(self(), :dtls_timeout, timeout)
269
270
+ {:retransmit, packets, timeout} ->
271
+ Logger.warning(
272
+ "DTLSTransport: Packets to retransmit differ from buffered local packets despite ICE not being connected"
273
+ )
274
+
275
+ Process.send_after(self(), :dtls_timeout, timeout)
276
277
:ok ->
278
:ok
279
end
0 commit comments