harlanc / xiu

A simple,high performance and secure live media server in pure Rust (RTMP[cluster]/RTSP/WebRTC[whip/whep]/HTTP-FLV/HLS).🦀
https://www.rustxiu.com
MIT License
1.61k stars 168 forks source link

[WebRTC] Unable to stream using WebRTC protocol #82

Closed VanderBieu closed 6 months ago

VanderBieu commented 6 months ago

XIU version 0.9.1

Describe the bug I followed README.md setting up a WebRTC server. However it failed to stream. Here is log info

[2023-12-22T01:31:44Z INFO  xwebrtc::session] 1:whip,2:live,3:test [2023-12-22T01:31:44Z INFO  streamhub] event data:     {"Publish":{"identifier":{"WebRTC":{"app_name":"live","stream_name":"test"}},"info":{"id":"1703208704","sub_type":"PushWebRTC","notify_info":{"request_url":"","remote_addr":""}}}} 
[2023-12-22T01:31:44Z INFO  streamhub] transmiter exits: idetifier: WebRTC - app_name: live, stream_name: test [2023-12-22T01:31:44Z INFO  webrtc::peer_connection] signaling state changed to have-remote-offer 
[2023-12-22T01:31:44Z INFO  webrtc_ice::mdns] mDNS is using 0.0.0.0:5353 as dest_addr 
[2023-12-22T01:31:44Z INFO  webrtc_mdns::conn] Looping and listening Ok(0.0.0.0:5353) 
[2023-12-22T01:31:44Z ERROR streamhub::notify] on_publish error: error sending request for url (http://localhost:3001/on_publish): error trying to connect: tcp connect error: Connection refused (os error 61) 
[2023-12-22T01:31:44Z INFO  webrtc::peer_connection] signaling state changed to stable 
[2023-12-22T01:31:44Z INFO  webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Checking 
[2023-12-22T01:31:44Z INFO  webrtc::peer_connection] ICE connection state changed: checking 
[2023-12-22T01:31:44Z INFO  xwebrtc::whip] Connection State has changed checking 
[2023-12-22T01:31:44Z WARN  webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. 
[2023-12-22T01:31:44Z WARN  webrtc_ice::agent::agent_gather] [controlled]: could not listen udp fd:a:b0:1:c0:2:d0:3: io error: Can't assign requested address (os error 49)
[2023-12-22T01:31:44Z WARN  webrtc_ice::agent::agent_gather] [controlled]: could not listen udp fe:80::: io error: Can't assign requested address (os error 49) 
[2023-12-22T01:31:44Z WARN  webrtc_ice::agent::agent_gather] [controlled]: failed to resolve stun host: stun.l.google.com:19302: io error: No available ipv6 IP address found! 
[2023-12-22T01:31:50Z WARN  webrtc_mdns::conn] Failed to parse mDNS packet parsing/packing of this type isn't available yet 
[2023-12-22T01:31:50Z WARN  webrtc_mdns::conn] Failed to parse mDNS packet parsing/packing of this type isn't available yet

To Reproduce My platform is Apple M1 MacbookPro, with macOS 14.2 installed. I am able to stream RTMP so I guess it has nothing to do with my hardware.

Expected behavior A clear and concise description of what you expected to happen.

harlanc commented 6 months ago

What client-side streaming software are you using? If using OBS please provide the version number.

VanderBieu commented 6 months ago

What client-side streaming software are you using? If using OBS please provide the version number.

I was using OBS v30.0.2, Apple Silicon build.

EnergoStalin commented 6 months ago

Kinda similar here but with VDO ninja whip publish

Heres the config

[webrtc]
enabled = true
port = 8889

[rtmp]
enabled = true
port = 1935

[log]
level = "trace"

Here's the log during connection and several attempts to get stream with ffplay log.txt

VDO ninja simply say's whip out failed. Used url.

harlanc commented 6 months ago

Hi @VanderBieu @EnergoStalin Please try the latest code from the master branch.

ghost commented 6 months ago

I encountered almost the same error yesterday and after that I also tried working with just webrtc-rs. Interestingly, although I did not make any changes to the code I had run before, webrtc-rs/broadcast_example stopped working, giving almost the same error.

The error I encountered in webrtc-rs broadcasting example: ``` wait for the offer from http_sdp_server webrtc/src/peer_connection/mod.rs:298 [INFO] 03:10:34.065460 - signaling state changed to have-remote-offer ice/src/mdns/mod.rs:61 [INFO] 03:10:34.074885 - mDNS is using 224.0.0.251:5353 as dest_addr ice/src/agent/mod.rs:142 [WARN] 03:10:34.076496 - Failed to initialize mDNS 4a6bb592-cd13-4ffe-9fad-862ff4326a5c.local: io error: Cannot assign requested address (os error 99) ice/src/agent/agent_internal.rs:332 [TRACE] 03:10:34.081631 - [controlled]: Set selected candidate pair: None webrtc/src/peer_connection/mod.rs:1581 [TRACE] 03:10:34.084084 - start_transports: ice_role=controlled, dtls_role=auto ice/src/agent/agent_internal.rs:182 [DEBUG] 03:10:34.084972 - Started agent: isControlling? false, remoteUfrag: da596550, remotePwd: 482ad34dc0efddf05ecbeaa7aaa73f20 ice/src/agent/agent_internal.rs:312 [INFO] 03:10:34.086273 - [controlled]: Setting new connection state: Checking ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:34.087030 - [controlled]: pinging all candidates webrtc/src/peer_connection/mod.rs:620 [INFO] 03:10:34.087169 - ICE connection state changed: checking ice/src/agent/agent_internal.rs:374 [WARN] 03:10:34.088813 - [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. webrtc/src/peer_connection/mod.rs:298 [INFO] 03:10:34.089200 - signaling state changed to stable webrtc/src/rtp_transceiver/mod.rs:364 [TRACE] 03:10:34.092087 - Changing current direction of transceiver from Unspecified to sendrecv webrtc/src/rtp_transceiver/mod.rs:387 [TRACE] 03:10:34.093265 - Processing transceiver(Some("0")) direction change from Unspecified to sendrecv ice/src/agent/agent_gather.rs:286 [WARN] 03:10:34.097281 - [controlled]: could not listen udp 169.254.221.23: io error: Cannot assign requested address (os error 99) ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:34.099053 - [controlled]: pinging all candidates ice/src/agent/agent_gather.rs:286 [WARN] 03:10:34.099877 - [controlled]: could not listen udp 169.254.153.137: io error: Cannot assign requested address (os error 99) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.100455 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_gather.rs:286 [WARN] 03:10:34.102136 - [controlled]: could not listen udp 169.254.105.43: io error: Cannot assign requested address (os error 99) ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.102480 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_gather.rs:286 [WARN] 03:10:34.105949 - [controlled]: could not listen udp 169.254.150.118: io error: Cannot assign requested address (os error 99) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.106903 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.110456 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.111416 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:34.111048 - inbound STUN (SuccessResponse) from udp4 host 172.22.160.1:59317 to udp4 host 172.22.160.1:63958 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.112760 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:34.113942 - Found valid candidate pair: prio 9115005268176994047 (local, prio 2130706431) udp4 host 172.22.160.1:63958 <-> udp4 host 172.22.160.1:59317 (remote, prio 2122252543) ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.115487 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.118384 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.119756 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.123153 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.124765 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.126446 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:34.126806 - inbound STUN (SuccessResponse) from udp4 host 172.22.160.1:59322 to udp4 host 172.22.160.1:63958 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.127670 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:34.128987 - Found valid candidate pair: prio 9115005263882026752 (local, prio 2130706431) udp4 host 172.22.160.1:63958 <-> udp4 host 172.22.160.1:59322 (remote, prio 2122252542) ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.130163 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.132998 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.134294 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.135425 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.138883 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.140241 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.141478 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.142890 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.144306 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.145779 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.146902 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.148663 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.150201 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.151391 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.154456 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.155476 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_gather.rs:652 [WARN] 03:10:34.155754 - [controlled]: could not get server reflexive address udp6 stun:stun.l.google.com:19302: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.156837 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.158480 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:34.157206 - inbound STUN (SuccessResponse) from udp4 host 172.21.128.1:59324 to udp4 host 172.21.128.1:63960 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.159956 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:34.160487 - Found valid candidate pair: prio 9114723788905381632 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 host 172.21.128.1:59324 (remote, prio 2122187006) ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.161644 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.163877 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.165451 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.168342 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.169444 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.170439 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.170982 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.172481 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.173386 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.174333 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.175289 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.176996 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:34.178474 - [controlled]: pinging all candidates ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:34.178900 - inbound STUN (SuccessResponse) from udp4 host 172.21.128.1:59319 to udp4 host 172.21.128.1:63960 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.178992 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:34.180002 - Found valid candidate pair: prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 host 172.21.128.1:59319 (remote, prio 2122187007) ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.181563 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.185301 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.186095 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.187007 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.187766 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.188666 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.189433 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.190349 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.191115 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.192459 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.193411 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.194297 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.195051 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.195978 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.196992 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.200061 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.201074 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.202046 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.202844 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.203835 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.204804 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.205778 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.206656 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.207600 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.208694 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.210082 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.210938 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.211851 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.212829 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.216081 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.217004 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.217855 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.218651 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.219518 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.220374 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.221275 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.222021 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.222925 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.223698 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.224602 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.226116 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:34.226376 - inbound STUN (SuccessResponse) from udp4 host 172.21.128.1:59319 to udp4 host 172.21.128.1:63960 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.226989 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:34.227849 - Found valid candidate pair: prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 host 172.21.128.1:59319 (remote, prio 2122187007) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.229223 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.233255 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.234240 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.235061 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.236112 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.236982 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.237944 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.239265 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:34.239382 - inbound STUN (SuccessResponse) from udp4 host 172.23.224.1:59325 to udp4 host 172.23.224.1:63961 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.240037 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:34.240838 - Found valid candidate pair: prio 9114160838952091392 (local, prio 2130706431) udp4 host 172.23.224.1:63961 <-> udp4 host 172.23.224.1:59325 (remote, prio 2122055934) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.241995 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.244504 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.247545 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.248512 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.249407 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.250187 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.251069 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.251931 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.252741 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.253821 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:34.254169 - inbound STUN (SuccessResponse) from udp4 host 172.23.224.1:59320 to udp4 host 172.23.224.1:63961 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.254602 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:34.255441 - Found valid candidate pair: prio 9114160843247058687 (local, prio 2130706431) udp4 host 172.23.224.1:63961 <-> udp4 host 172.23.224.1:59320 (remote, prio 2122055935) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.256376 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.258653 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.260129 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.261419 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:34.261747 - inbound STUN (SuccessResponse) from udp4 host 192.168.124.30:59318 to udp4 host 192.168.124.30:63962 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.264733 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:34.265372 - Found valid candidate pair: prio 9113879368270413567 (local, prio 2130706431) udp4 host 192.168.124.30:63962 <-> udp4 host 192.168.124.30:59318 (remote, prio 2121990399) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.266712 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.268926 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.270076 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.271159 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:34.271449 - inbound STUN (SuccessResponse) from udp4 host 192.168.124.30:59323 to udp4 host 192.168.124.30:63962 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.272368 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:34.273008 - Found valid candidate pair: prio 9113879363975446272 (local, prio 2130706431) udp4 host 192.168.124.30:63962 <-> udp4 host 192.168.124.30:59323 (remote, prio 2121990398) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.274388 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.277610 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.279983 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.281399 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:34.281810 - inbound STUN (SuccessResponse) from udp4 host 172.27.32.1:59321 to udp4 host 172.27.32.1:63963 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.282282 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:34.283088 - Found valid candidate pair: prio 9114442318223703807 (local, prio 2130706431) udp4 host 172.27.32.1:63963 <-> udp4 host 172.27.32.1:59321 (remote, prio 2122121471) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.284034 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.285722 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.286599 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.287411 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.288286 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.289053 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.289944 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.290701 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.291581 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.293650 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:34.293974 - inbound STUN (SuccessResponse) from udp4 host 172.27.32.1:59326 to udp4 host 172.27.32.1:63963 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.297196 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:34.298047 - Found valid candidate pair: prio 9114442313928736512 (local, prio 2130706431) udp4 host 172.27.32.1:63963 <-> udp4 host 172.27.32.1:59326 (remote, prio 2122121470) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.299071 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.300872 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.301837 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.302696 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.303665 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.304492 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.305442 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.306269 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:34.509183 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.510190 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.511395 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.512760 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.514276 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.514994 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.516467 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.517700 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.518983 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.520301 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.521534 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.522858 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.524108 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.525572 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.526996 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.528326 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.532769 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.534156 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.535345 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.536554 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.537721 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.538995 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.540240 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.541273 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.542979 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.544111 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.547018 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.548143 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.550049 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.551081 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.552023 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.553015 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.553999 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.555028 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.555990 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.557257 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.557620 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.558257 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.561644 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.562927 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.563977 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.566187 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.566738 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.567812 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.568830 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.569487 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.569994 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.570620 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.571100 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.571771 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.572758 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.573875 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.579660 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.583074 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.584810 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.588499 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.589730 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.591179 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.595322 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.597618 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.598559 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.599597 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.600771 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.601743 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.602839 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.603903 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.605037 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.606075 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.610039 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.611899 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.613587 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.614673 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.615506 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.616523 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.617465 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.618570 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.619477 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.620503 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.621432 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.622498 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.625497 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.626164 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.627749 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.629076 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.630044 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.631062 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.632010 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.632988 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.633956 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.634961 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.636072 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:34.838984 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.839757 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.840562 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.842046 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.843557 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.844828 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.845915 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.847268 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.848524 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.849784 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.850902 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.852944 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.854611 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.855864 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.857006 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.862121 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.863435 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.864755 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.865928 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.867124 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.867695 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.868252 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.869508 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.870533 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.871497 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.872097 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.873046 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.876479 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.877590 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.878759 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.879319 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.880690 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.881696 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.882834 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.883722 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.885235 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.885766 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.886742 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.887733 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.888787 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.889840 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.893571 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.894736 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.895828 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.896782 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.897812 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.898774 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.899809 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.900371 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.902281 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.903230 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.904311 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.905256 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.908224 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.909967 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.911149 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.912305 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.913386 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.914110 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.914773 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.915731 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.917195 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.917966 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.918580 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.919220 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.919864 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.921080 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.924696 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.925655 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.926872 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.928022 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.929206 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.930128 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.931257 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.931832 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.933304 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.933850 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.934870 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.935820 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.938855 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.939471 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.940771 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.941828 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.943347 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.944278 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.944912 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.945830 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.946829 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.948051 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:34.948795 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:34.949758 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:35.152151 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.153097 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.155143 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.157560 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.159046 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.160799 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.161969 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.163206 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.164285 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.165509 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.166650 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.168017 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.169865 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.171038 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.172178 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.177762 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.178788 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.179929 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.180917 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.181487 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.182467 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.183460 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.185302 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.186327 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.186898 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.188007 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.191189 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.193057 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.194129 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.195239 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.196273 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.197299 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.198279 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.199371 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.200880 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.201494 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.202028 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.202642 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.203571 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.206768 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.207757 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.208971 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.210301 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.211563 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.212733 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.213989 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.214916 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.215998 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.217509 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.218635 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.220778 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.222294 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.223359 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.225067 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.226121 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.227281 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.228136 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.229199 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.230193 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.231245 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.231825 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.233619 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.234320 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.238203 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.239225 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.240321 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.241696 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.243513 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.244725 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.245962 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.246619 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.248733 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.249771 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.251253 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.254541 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.255568 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.256142 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.257352 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.258203 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.259662 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.260584 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.261600 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.262549 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.263440 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.264789 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.265755 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.266691 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.269630 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.270743 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.272123 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.272639 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:35.473473 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.474364 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.476257 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.478732 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.479879 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.481000 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.481949 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.482905 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.483835 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.486280 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.487479 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.488451 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.489382 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.490359 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.491267 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.492992 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.493952 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.494922 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.495824 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.496808 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.497774 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.498800 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.499772 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.502484 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.503649 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.504691 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.505699 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.506761 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.507769 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.509855 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.510251 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.511393 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.512566 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.513652 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.514819 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.518217 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.519461 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.520528 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.521479 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.522438 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.523418 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.524583 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.525855 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.527078 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.527986 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.528980 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.529966 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.532926 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.534037 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.535085 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.536104 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.537251 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.538248 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.539259 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.540838 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.542076 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.543313 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.544394 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.545442 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.548253 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.549466 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.550053 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.551445 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.552430 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.553582 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.554175 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.554826 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.555478 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.557770 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.559100 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.560398 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.561443 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.563700 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.564860 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.565756 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.566752 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.567737 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.568765 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.569699 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.570693 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.571767 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.573452 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.574431 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.576125 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.576738 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.579846 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.581287 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.582373 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.583314 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.584356 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.585310 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:35.788877 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.789617 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.790878 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.792142 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.794071 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.795365 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.797252 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.798080 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.799185 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.799798 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.800727 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.801762 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.802729 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.803793 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.804461 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.805482 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.806494 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.807102 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.807649 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.809066 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.810477 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.814395 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.815264 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.815935 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.816868 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.817882 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.818861 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.819996 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.820563 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.821618 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.822646 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.823700 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.824663 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.825979 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.829354 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.830681 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.831608 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.832221 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.832737 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.833304 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.834296 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.834908 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.835995 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.837245 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.838021 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.839025 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.839940 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.840884 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.841560 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.845641 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.847194 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.848072 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.848620 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.849793 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.850866 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.851842 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.853139 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.854020 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.854885 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.855889 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.856741 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.857697 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.862361 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.863410 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.864007 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.865105 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.866191 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.867339 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.868747 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.869801 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.870846 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.871953 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.872812 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.876700 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.877886 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.878985 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.879910 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.881053 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.881906 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.882859 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.883731 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.884688 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.885588 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.886527 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.887058 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.888064 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.889101 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.892888 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.894081 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:35.895101 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:35.896122 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:36.097600 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.098417 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.099759 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.102456 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.103545 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.104466 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.105100 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.106502 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.107484 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.109449 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.112163 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.114290 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.115226 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.116211 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.117944 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.118581 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.119623 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.120636 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.122072 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.122999 - [controlled]: ping STUN from udp4 host 172.22.160.1:63958 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.123916 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.124817 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.128403 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.130648 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.131603 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.132740 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.133673 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.134618 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.135555 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.136531 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.137047 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.138682 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.139565 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.140525 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.141563 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.145583 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.147257 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.147837 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.149274 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.149938 - [controlled]: ping STUN from udp4 host 172.21.128.1:63960 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.150967 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.151975 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.152966 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.154494 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.155359 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.156253 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.157104 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.160550 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.161744 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.162468 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.163497 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.164881 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.165949 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.166878 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.167753 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.168709 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.169774 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.170819 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.171723 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.172633 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.173557 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.177655 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.178983 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.180049 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.182096 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.182682 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.183903 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.184746 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.185781 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.186777 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.187793 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.188765 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.189657 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.193010 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.194214 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.194869 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.195882 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.196384 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.198194 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.199254 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.200319 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.200940 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.201864 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.202734 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.203586 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.204443 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.204948 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.208203 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.208973 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.209988 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.211313 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:36.414147 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.414719 - [controlled]: max requests reached for pair prio 9114442318223703807 (local, prio 2130706431) udp4 host 172.22.160.1:63958 <-> udp4 host 172.27.32.1:59321 (remote, prio 2122121471), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.415925 - [controlled]: max requests reached for pair prio 9113879368270413567 (local, prio 2130706431) udp4 host 172.22.160.1:63958 <-> udp4 host 192.168.124.30:59318 (remote, prio 2121990399), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.417132 - [controlled]: max requests reached for pair prio 9114723788905381632 (local, prio 2130706431) udp4 host 172.22.160.1:63958 <-> udp4 host 172.21.128.1:59324 (remote, prio 2122187006), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.418393 - [controlled]: max requests reached for pair prio 9114160838952091392 (local, prio 2130706431) udp4 host 172.22.160.1:63958 <-> udp4 host 172.23.224.1:59325 (remote, prio 2122055934), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.419600 - [controlled]: max requests reached for pair prio 9114442313928736512 (local, prio 2130706431) udp4 host 172.22.160.1:63958 <-> udp4 host 172.27.32.1:59326 (remote, prio 2122121470), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.421600 - [controlled]: max requests reached for pair prio 9113879363975446272 (local, prio 2130706431) udp4 host 172.22.160.1:63958 <-> udp4 host 192.168.124.30:59323 (remote, prio 2121990398), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.422852 - [controlled]: max requests reached for pair prio 7240416008580947967 (local, prio 2130706431) udp4 host 172.22.160.1:63958 <-> udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 (remote, prio 1685790719), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.424116 - [controlled]: max requests reached for pair prio 7240416004285980672 (local, prio 2130706431) udp4 host 172.22.160.1:63958 <-> udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 (remote, prio 1685790718), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.427634 - [controlled]: max requests reached for pair prio 9114160843247058687 (local, prio 2130706431) udp4 host 172.22.160.1:63958 <-> udp4 host 172.23.224.1:59320 (remote, prio 2122055935), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.428846 - [controlled]: max requests reached for pair prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.22.160.1:63958 <-> udp4 host 172.21.128.1:59319 (remote, prio 2122187007), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.429825 - [controlled]: max requests reached for pair prio 9114442318223703807 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 host 172.27.32.1:59321 (remote, prio 2122121471), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.430807 - [controlled]: max requests reached for pair prio 9115005268176994047 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 host 172.22.160.1:59317 (remote, prio 2122252543), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.431857 - [controlled]: max requests reached for pair prio 9113879368270413567 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 host 192.168.124.30:59318 (remote, prio 2121990399), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.432911 - [controlled]: max requests reached for pair prio 9114160838952091392 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 host 172.23.224.1:59325 (remote, prio 2122055934), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.433962 - [controlled]: max requests reached for pair prio 9115005263882026752 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 host 172.22.160.1:59322 (remote, prio 2122252542), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.434997 - [controlled]: max requests reached for pair prio 9114442313928736512 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 host 172.27.32.1:59326 (remote, prio 2122121470), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.436539 - [controlled]: max requests reached for pair prio 9113879363975446272 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 host 192.168.124.30:59323 (remote, prio 2121990398), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.437653 - [controlled]: max requests reached for pair prio 7240416008580947967 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 (remote, prio 1685790719), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.438535 - [controlled]: max requests reached for pair prio 7240416004285980672 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 (remote, prio 1685790718), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.439471 - [controlled]: max requests reached for pair prio 9114160843247058687 (local, prio 2130706431) udp4 host 172.21.128.1:63960 <-> udp4 host 172.23.224.1:59320 (remote, prio 2122055935), marking it as failed ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.443376 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.444867 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.446005 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.447075 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.448431 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.449538 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.450514 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.451086 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.451648 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.452236 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.453433 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.454025 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.456627 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.457797 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.459056 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.460291 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.461211 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.462056 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.463041 - [controlled]: ping STUN from udp4 host 172.23.224.1:63961 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.464050 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.464662 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.465959 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.467001 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.468014 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.469715 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.470866 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.474088 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.475194 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.476993 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.478083 - [controlled]: ping STUN from udp4 host 192.168.124.30:63962 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.478785 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.479727 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.480341 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.481513 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.482553 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.483599 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.484508 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.485859 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.488916 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.489969 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.490935 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.492150 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.493329 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.494356 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.495389 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.496393 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.497018 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.498058 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:36.499101 - [controlled]: ping STUN from udp4 host 172.27.32.1:63963 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_internal.rs:1018 [TRACE] 03:10:36.500091 - [controlled]: failed to send STUN message: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:36.704099 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.705168 - [controlled]: max requests reached for pair prio 9114442318223703807 (local, prio 2130706431) udp4 host 172.23.224.1:63961 <-> udp4 host 172.27.32.1:59321 (remote, prio 2122121471), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.708067 - [controlled]: max requests reached for pair prio 9115005268176994047 (local, prio 2130706431) udp4 host 172.23.224.1:63961 <-> udp4 host 172.22.160.1:59317 (remote, prio 2122252543), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.712125 - [controlled]: max requests reached for pair prio 9113879368270413567 (local, prio 2130706431) udp4 host 172.23.224.1:63961 <-> udp4 host 192.168.124.30:59318 (remote, prio 2121990399), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.714931 - [controlled]: max requests reached for pair prio 9114723788905381632 (local, prio 2130706431) udp4 host 172.23.224.1:63961 <-> udp4 host 172.21.128.1:59324 (remote, prio 2122187006), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.718401 - [controlled]: max requests reached for pair prio 9115005263882026752 (local, prio 2130706431) udp4 host 172.23.224.1:63961 <-> udp4 host 172.22.160.1:59322 (remote, prio 2122252542), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.724278 - [controlled]: max requests reached for pair prio 9114442313928736512 (local, prio 2130706431) udp4 host 172.23.224.1:63961 <-> udp4 host 172.27.32.1:59326 (remote, prio 2122121470), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.728643 - [controlled]: max requests reached for pair prio 9113879363975446272 (local, prio 2130706431) udp4 host 172.23.224.1:63961 <-> udp4 host 192.168.124.30:59323 (remote, prio 2121990398), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.730417 - [controlled]: max requests reached for pair prio 7240416008580947967 (local, prio 2130706431) udp4 host 172.23.224.1:63961 <-> udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 (remote, prio 1685790719), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.732209 - [controlled]: max requests reached for pair prio 7240416004285980672 (local, prio 2130706431) udp4 host 172.23.224.1:63961 <-> udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 (remote, prio 1685790718), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.736319 - [controlled]: max requests reached for pair prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.23.224.1:63961 <-> udp4 host 172.21.128.1:59319 (remote, prio 2122187007), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.738801 - [controlled]: max requests reached for pair prio 9114442318223703807 (local, prio 2130706431) udp4 host 192.168.124.30:63962 <-> udp4 host 172.27.32.1:59321 (remote, prio 2122121471), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.743203 - [controlled]: max requests reached for pair prio 9115005268176994047 (local, prio 2130706431) udp4 host 192.168.124.30:63962 <-> udp4 host 172.22.160.1:59317 (remote, prio 2122252543), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.744998 - [controlled]: max requests reached for pair prio 9114723788905381632 (local, prio 2130706431) udp4 host 192.168.124.30:63962 <-> udp4 host 172.21.128.1:59324 (remote, prio 2122187006), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.746806 - [controlled]: max requests reached for pair prio 9114160838952091392 (local, prio 2130706431) udp4 host 192.168.124.30:63962 <-> udp4 host 172.23.224.1:59325 (remote, prio 2122055934), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.749125 - [controlled]: max requests reached for pair prio 9115005263882026752 (local, prio 2130706431) udp4 host 192.168.124.30:63962 <-> udp4 host 172.22.160.1:59322 (remote, prio 2122252542), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.750431 - [controlled]: max requests reached for pair prio 9114442313928736512 (local, prio 2130706431) udp4 host 192.168.124.30:63962 <-> udp4 host 172.27.32.1:59326 (remote, prio 2122121470), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.754726 - [controlled]: max requests reached for pair prio 7240416008580947967 (local, prio 2130706431) udp4 host 192.168.124.30:63962 <-> udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 (remote, prio 1685790719), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.757581 - [controlled]: max requests reached for pair prio 7240416004285980672 (local, prio 2130706431) udp4 host 192.168.124.30:63962 <-> udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 (remote, prio 1685790718), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.758746 - [controlled]: max requests reached for pair prio 9114160843247058687 (local, prio 2130706431) udp4 host 192.168.124.30:63962 <-> udp4 host 172.23.224.1:59320 (remote, prio 2122055935), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.760200 - [controlled]: max requests reached for pair prio 9114723793200348927 (local, prio 2130706431) udp4 host 192.168.124.30:63962 <-> udp4 host 172.21.128.1:59319 (remote, prio 2122187007), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.761317 - [controlled]: max requests reached for pair prio 9115005268176994047 (local, prio 2130706431) udp4 host 172.27.32.1:63963 <-> udp4 host 172.22.160.1:59317 (remote, prio 2122252543), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.762402 - [controlled]: max requests reached for pair prio 9113879368270413567 (local, prio 2130706431) udp4 host 172.27.32.1:63963 <-> udp4 host 192.168.124.30:59318 (remote, prio 2121990399), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.763545 - [controlled]: max requests reached for pair prio 9114723788905381632 (local, prio 2130706431) udp4 host 172.27.32.1:63963 <-> udp4 host 172.21.128.1:59324 (remote, prio 2122187006), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.766395 - [controlled]: max requests reached for pair prio 9114160838952091392 (local, prio 2130706431) udp4 host 172.27.32.1:63963 <-> udp4 host 172.23.224.1:59325 (remote, prio 2122055934), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.767528 - [controlled]: max requests reached for pair prio 9115005263882026752 (local, prio 2130706431) udp4 host 172.27.32.1:63963 <-> udp4 host 172.22.160.1:59322 (remote, prio 2122252542), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.768432 - [controlled]: max requests reached for pair prio 9113879363975446272 (local, prio 2130706431) udp4 host 172.27.32.1:63963 <-> udp4 host 192.168.124.30:59323 (remote, prio 2121990398), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.769404 - [controlled]: max requests reached for pair prio 7240416008580947967 (local, prio 2130706431) udp4 host 172.27.32.1:63963 <-> udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 (remote, prio 1685790719), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.770386 - [controlled]: max requests reached for pair prio 7240416004285980672 (local, prio 2130706431) udp4 host 172.27.32.1:63963 <-> udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 (remote, prio 1685790718), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.771404 - [controlled]: max requests reached for pair prio 9114160843247058687 (local, prio 2130706431) udp4 host 172.27.32.1:63963 <-> udp4 host 172.23.224.1:59320 (remote, prio 2122055935), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:36.772878 - [controlled]: max requests reached for pair prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.27.32.1:63963 <-> udp4 host 172.21.128.1:59319 (remote, prio 2122187007), marking it as failed ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:36.975967 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:37.178992 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:37.381723 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:37.584133 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:37.785996 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:37.989000 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:38.191243 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:38.394515 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:38.596360 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:38.799441 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:39.003070 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:39.176557 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.177328 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 host 172.27.32.1:59321 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.178504 - [controlled]: Discarded 177 binding requests because they expired ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.180017 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 host 172.22.160.1:59317 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.180659 - [controlled]: Discarded 1 binding requests because they expired webrtc/src/peer_connection/mod.rs:2082 [TRACE] 03:10:39.181545 - setGatherCompleteHandler ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.182471 - [controlled]: Discarded 1 binding requests because they expired ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:39.185428 - inbound STUN (SuccessResponse) from udp4 host 172.27.32.1:59321 to udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:39.187798 - Found valid candidate pair: prio 7277816996085498368 (local, prio 1694498815) udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 <-> udp4 host 172.27.32.1:59321 (remote, prio 2122121471) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.190710 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 host 192.168.124.30:59318 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.191144 - [controlled]: Discarded 4 binding requests because they expired ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:39.193456 - inbound STUN (SuccessResponse) from udp4 host 172.22.160.1:59317 to udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:39.194550 - Found valid candidate pair: prio 7277816996085760512 (local, prio 1694498815) udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 <-> udp4 host 172.22.160.1:59317 (remote, prio 2122252543) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.196269 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 host 172.21.128.1:59324 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.196725 - [controlled]: Discarded 2 binding requests because they expired ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:39.198519 - inbound STUN (SuccessResponse) from udp4 host 192.168.124.30:59318 to udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:39.201643 - Found valid candidate pair: prio 7277816996085236224 (local, prio 1694498815) udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 <-> udp4 host 192.168.124.30:59318 (remote, prio 2121990399) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.203381 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 host 172.23.224.1:59325 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.203869 - [controlled]: Discarded 4 binding requests because they expired ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:39.206318 - inbound STUN (SuccessResponse) from udp4 host 172.21.128.1:59324 to udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:39.207362 - Found valid candidate pair: prio 7277816996085629438 (local, prio 1694498815) udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 <-> udp4 host 172.21.128.1:59324 (remote, prio 2122187006) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.209063 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 host 172.22.160.1:59322 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.210088 - [controlled]: Discarded 1 binding requests because they expired ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:39.211303 - inbound STUN (SuccessResponse) from udp4 host 172.23.224.1:59325 to udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:39.211806 - Found valid candidate pair: prio 7277816996085367294 (local, prio 1694498815) udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 <-> udp4 host 172.23.224.1:59325 (remote, prio 2122055934) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.213162 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 host 172.27.32.1:59326 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.213725 - [controlled]: Discarded 2 binding requests because they expired ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:39.217645 - inbound STUN (SuccessResponse) from udp4 host 172.22.160.1:59322 to udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:39.218533 - Found valid candidate pair: prio 7277816996085760510 (local, prio 1694498815) udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 <-> udp4 host 172.22.160.1:59322 (remote, prio 2122252542) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.220199 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 host 192.168.124.30:59323 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.220437 - [controlled]: Discarded 2 binding requests because they expired ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.222032 - [controlled]: Discarded 1 binding requests because they expired ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:39.223097 - inbound STUN (SuccessResponse) from udp4 host 172.27.32.1:59326 to udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:39.223684 - Found valid candidate pair: prio 7277816996085498366 (local, prio 1694498815) udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 <-> udp4 host 172.27.32.1:59326 (remote, prio 2122121470) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.224641 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.224966 - [controlled]: Discarded 1 binding requests because they expired ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:39.227023 - inbound STUN (SuccessResponse) from udp4 host 192.168.124.30:59323 to udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:39.227982 - Found valid candidate pair: prio 7277816996085236222 (local, prio 1694498815) udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 <-> udp4 host 192.168.124.30:59323 (remote, prio 2121990398) ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.229601 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.232701 - [controlled]: Discarded 4 binding requests because they expired ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.233953 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 host 172.23.224.1:59320 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.234692 - [controlled]: Discarded 1 binding requests because they expired ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.235684 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 host 172.21.128.1:59319 ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:39.236009 - inbound STUN (SuccessResponse) from udp4 host 172.23.224.1:59320 to udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:39.238334 - Found valid candidate pair: prio 7277816996085367296 (local, prio 1694498815) udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 <-> udp4 host 172.23.224.1:59320 (remote, prio 2122055935) ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.239573 - [controlled]: Discarded 2 binding requests because they expired ice/src/agent/agent_selector.rs:481 [TRACE] 03:10:39.240405 - inbound STUN (SuccessResponse) from udp4 host 172.21.128.1:59319 to udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 ice/src/agent/agent_selector.rs:490 [TRACE] 03:10:39.241403 - Found valid candidate pair: prio 7277816996085629440 (local, prio 1694498815) udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 <-> udp4 host 172.21.128.1:59319 (remote, prio 2122187007) ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:39.438458 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.439347 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.440677 - [controlled]: Discarded 17 binding requests because they expired ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.442476 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:39.645497 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.646410 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.648026 - [controlled]: Discarded 50 binding requests because they expired ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.649591 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:39.851865 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.852854 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.854034 - [controlled]: Discarded 28 binding requests because they expired ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:39.855607 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:39.856596 - [controlled]: Discarded 1 binding requests because they expired ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:40.058970 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:40.059606 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:40.060848 - [controlled]: Discarded 21 binding requests because they expired ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:40.061870 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:40.265333 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:40.266915 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:40.269457 - [controlled]: Discarded 50 binding requests because they expired ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:40.273373 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:40.479002 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:40.480543 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:40.483284 - [controlled]: Discarded 22 binding requests because they expired ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:40.488788 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:40.494797 - [controlled]: Discarded 5 binding requests because they expired ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:40.699527 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:40.701418 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 ice/src/agent/agent_internal.rs:797 [TRACE] 03:10:40.703775 - [controlled]: Discarded 3 binding requests because they expired ice/src/agent/agent_internal.rs:715 [TRACE] 03:10:40.707424 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 to udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:40.913411 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:40.914558 - [controlled]: max requests reached for pair prio 7240416007708532735 (local, prio 1694498815) udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 <-> udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318 (remote, prio 1685790719), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 03:10:40.919787 - [controlled]: max requests reached for pair prio 7240416003413565440 (local, prio 1694498815) udp4 srflx 31.223.65.4:19052 related 0.0.0.0:63971 <-> udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323 (remote, prio 1685790718), marking it as failed ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:41.124982 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:41.328507 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:41.530782 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:41.735350 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:41.938267 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:42.143092 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:42.346310 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:42.548143 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:42.750063 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:42.952315 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:43.153440 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:43.355937 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:43.559015 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:43.760912 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:43.964208 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:44.167227 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:44.370528 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:44.572776 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:44.777380 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:44.982326 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:45.186799 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:45.390691 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:45.596193 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:45.800851 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:46.003985 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:46.208481 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:46.415797 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:46.620622 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:46.823389 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:47.030706 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:47.235209 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:47.440081 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:47.645413 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:47.849542 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:48.053287 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:48.256116 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:48.459170 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:48.662857 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:48.865412 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:49.068377 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:49.271305 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:49.474660 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:49.679014 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:49.883456 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:50.086332 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:50.288769 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:50.493306 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:50.696365 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:50.899371 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:51.101107 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:51.304423 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:51.507486 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:51.711472 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:51.915218 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:52.118410 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:52.320684 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:52.523810 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:52.728385 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:52.932516 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:53.136940 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:53.341475 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:53.547490 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:53.752093 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:53.957407 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:54.161267 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:54.366249 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:54.570294 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:54.774576 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:54.982017 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:55.186833 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:55.389431 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:55.592598 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:55.795103 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:55.997593 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:56.200098 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:56.402273 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:56.605198 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:56.809676 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:57.014412 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:57.218697 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:57.422551 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:57.626231 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:57.829956 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:58.033741 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:58.237094 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:58.438967 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:58.641670 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:58.843876 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:59.046405 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:59.249024 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:59.451921 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:59.655887 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:10:59.857908 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:00.061442 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:00.263465 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:00.465432 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:00.667282 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:00.870173 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:01.072166 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:01.273942 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:01.476434 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:01.679117 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:01.881428 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:02.084249 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:02.285984 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:02.488449 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:02.691423 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:02.894237 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:03.096883 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:03.299136 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:03.502204 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:03.705431 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 03:11:03.909458 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.111912 - [controlled]: Failed to close candidate tcp4 host 192.168.124.30:9: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.114797 - [controlled]: Failed to close candidate tcp4 host 172.21.128.1:9: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.118318 - [controlled]: Failed to close candidate tcp4 host 172.23.224.1:9: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.120547 - [controlled]: Failed to close candidate tcp4 host 172.27.32.1:9: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.123127 - [controlled]: Failed to close candidate tcp4 host 172.22.160.1:9: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.125196 - [controlled]: Failed to close candidate udp4 host 172.27.32.1:59321: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.127893 - [controlled]: Failed to close candidate udp4 host 172.22.160.1:59317: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.129926 - [controlled]: Failed to close candidate udp4 host 192.168.124.30:59318: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.132135 - [controlled]: Failed to close candidate udp4 host 172.21.128.1:59324: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.135209 - [controlled]: Failed to close candidate udp4 host 172.23.224.1:59325: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.140691 - [controlled]: Failed to close candidate udp4 host 172.22.160.1:59322: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.144213 - [controlled]: Failed to close candidate udp4 host 172.27.32.1:59326: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.146047 - [controlled]: Failed to close candidate udp4 host 192.168.124.30:59323: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.148117 - [controlled]: Failed to close candidate udp4 srflx 31.223.65.4:19137 related 192.168.124.30:59318: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.150703 - [controlled]: Failed to close candidate udp4 srflx 31.223.65.4:18452 related 192.168.124.30:59323: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.152043 - [controlled]: Failed to close candidate udp4 host 172.23.224.1:59320: the agent is closed ice/src/agent/agent_internal.rs:678 [WARN] 03:11:04.154624 - [controlled]: Failed to close candidate udp4 host 172.21.128.1:59319: the agent is closed ice/src/agent/agent_internal.rs:312 [INFO] 03:11:04.157224 - [controlled]: Setting new connection state: Failed webrtc/src/peer_connection/mod.rs:620 [INFO] 03:11:04.158190 - ICE connection state changed: failed webrtc/src/peer_connection/mod.rs:900 [INFO] 03:11:04.159003 - peer connection state changed: failed Peer Connection State has changed: failed ```

A very similar situation occurred in your old code, but I cannot send its logs right now. In the current version of xiu, we encounter the following error (tried to start streaming 3 times):

[2023-12-23T23:58:19Z INFO  xwebrtc::webrtc] WebRTC server listening on tcp://0.0.0.0:8900
[2023-12-23T23:58:19Z INFO  rtmp::rtmp] Rtmp server listening on tcp://0.0.0.0:1935
[2023-12-23T23:58:19Z INFO  xiu::api] Http api server listening on http://:8080
[2023-12-23T23:59:23Z ERROR xwebrtc::webrtc] session run error, err: Utf8Error: invalid utf-8 sequence of 1 bytes from index 17
[2023-12-24T00:01:16Z ERROR xwebrtc::webrtc] session run error, err: Utf8Error: invalid utf-8 sequence of 2 bytes from index 3
[2023-12-24T00:01:23Z ERROR xwebrtc::webrtc] session run error, err: Utf8Error: invalid utf-8 sequence of 1 bytes from index 17

The streaming software I used when testing xiu is obs@30.0.2 for windows. Also the servers are running on WSL (Default Distribution: Ubuntu-22.04 Default Version: 2).

I will try it on a virtual server soon and investigate the source of the problem. There seems to be a completely different error in the current version of xiu. As for the error related to webrtc, my guess is that it may be related to the mdns or stun connection, but it is difficult to say anything without examining the network records in detail, maybe it would be useful to consult the developers of webrtc-rs.

edit: i tried webrtc-rs's broadcast example over and over again and managed to get a delayed response on one, when I typed base64 encoded sdp that the server wrote to the console in jsfiddle the connection was established.

harlanc commented 6 months ago

@ikircik thanks for your detailed descriptions for the problem, I conducted some test on a local network where I used OBS (v30.0.2) on one Mac to stream to Xiu Server on another one. Below are some logs:

2023-12-24T03:36:14Z INFO  xwebrtc::webrtc] WebRTC server listening on tcp://0.0.0.0:8900
2023-12-24T03:36:14Z INFO  xiu::api] Http api server listening on http://:8000
2023-12-24T03:36:17Z INFO  xwebrtc::session] 1:whip,2:live,3:test
2023-12-24T03:36:17Z INFO  streamhub] event data: {"Publish":{"identifier":{"WebRTC":{"app_name":"live","stream_name":"test"}},"info":{"id":"1703388977",    sub_type":"PushWebRTC","notify_info":{"request_url":"","remote_addr":""}}}}
2023-12-24T03:36:17Z INFO  streamhub] transmiter exits: idetifier: WebRTC - app_name: live, stream_name: test
2023-12-24T03:36:17Z INFO  webrtc::peer_connection] signaling state changed to have-remote-offer
2023-12-24T03:36:17Z INFO  webrtc_ice::mdns] mDNS is using 0.0.0.0:5353 as dest_addr
2023-12-24T03:36:17Z INFO  webrtc_mdns::conn] Looping and listening Ok(0.0.0.0:5353)
2023-12-24T03:36:17Z INFO  webrtc::peer_connection] signaling state changed to stable
2023-12-24T03:36:17Z INFO  webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Checking
2023-12-24T03:36:17Z WARN  webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible     et.
2023-12-24T03:36:17Z INFO  webrtc::peer_connection] ICE connection state changed: checking
2023-12-24T03:36:17Z INFO  xwebrtc::whip] Connection State has changed checking
2023-12-24T03:36:17Z WARN  webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible     et.
2023-12-24T03:36:17Z WARN  webrtc_ice::agent::agent_gather] [controlled]: could not listen udp fe:80::: io error: Can't assign requested address (os     rror 49)
2023-12-24T03:36:17Z WARN  webrtc_ice::agent::agent_gather] [controlled]: failed to resolve stun host: stun.l.google.com:19302: io error: No available     pv6 IP address found!
2023-12-24T03:36:19Z INFO  webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Connected
2023-12-24T03:36:19Z INFO  webrtc::peer_connection] ICE connection state changed: connected
2023-12-24T03:36:19Z INFO  xwebrtc::whip] Connection State has changed connected
2023-12-24T03:36:19Z INFO  xwebrtc::whip] Ctrl+C the remote client to stop the demo
2023-12-24T03:36:19Z INFO  webrtc::peer_connection] peer connection state changed: connected
2023-12-24T03:36:19Z INFO  xwebrtc::whip] Peer Connection State has changed: connected

including some warnings, but they didn't affect the successful streaming. The error logs you mentioned are new to me, I'll also do some investigate ..

harlanc commented 6 months ago

Hi @ikircik I cannot reproduce, according to your logs I suspect that the error log was generated by this line of code:

if let Some(http_request) = HttpRequest::unmarshal(std::str::from_utf8(&request_data)?) {

or maybe this line:

std::str::from_utf8(&request_data)?

If that's the case, it could be related to an issue with the HTTP request.

ghost commented 6 months ago

First of all, I owe you a big apology. While trying yesterday, I made the OBS settings wrong and chose the "custom" option instead of "whip", this was the reason for the errors related to utf8.

Today I am sharing the logs I got when I tried it twice in a row with the correct config: The two requests are separated by ----. Also, when I say "twice in a row", I mean right after I saw the error message in obs about not being able to connect. ``` [2023-12-24T09:09:22Z INFO xiu::api] Http api server listening on http://:8080 [2023-12-24T09:09:22Z INFO xwebrtc::webrtc] WebRTC server listening on tcp://0.0.0.0:8900 [2023-12-24T09:09:22Z INFO rtmp::rtmp] Rtmp server listening on tcp://0.0.0.0:1935 [2023-12-24T09:09:25Z INFO xwebrtc::session] 1:whip,2:live,3:test [2023-12-24T09:09:25Z INFO streamhub] event data: {"Publish":{"identifier":{"WebRTC":{"app_name":"live","stream_name":"test"}},"info":{"id":"1703408965","sub_type":"PushWebRTC","notify_info":{"request_url":"","remote_addr":""}}}} [2023-12-24T09:09:25Z INFO streamhub] transmiter exits: idetifier: WebRTC - app_name: live, stream_name: test [2023-12-24T09:09:25Z INFO webrtc::peer_connection] signaling state changed to have-remote-offer [2023-12-24T09:09:25Z INFO webrtc_ice::mdns] mDNS is using 224.0.0.251:5353 as dest_addr [2023-12-24T09:09:25Z WARN webrtc_ice::agent] Failed to initialize mDNS 123a2633-4e88-4e41-8f68-b32b7f4b783e.local: io error: Cannot assign requested address (os error 99) [2023-12-24T09:09:25Z INFO webrtc::peer_connection] signaling state changed to stable [2023-12-24T09:09:25Z DEBUG webrtc_ice::agent::agent_internal] Started agent: isControlling? false, remoteUfrag: jx5Y, remotePwd: lrxOq8P8Nht4w5H9DqmqpH [2023-12-24T09:09:25Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp 169.254.221.23: io error: Cannot assign requested address (os error 99) [2023-12-24T09:09:25Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Checking [2023-12-24T09:09:25Z INFO webrtc::peer_connection] ICE connection state changed: checking [2023-12-24T09:09:25Z INFO xwebrtc::whip] Connection State has changed checking [2023-12-24T09:09:25Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp fe:80::: io error: Cannot assign requested address (os error 99) [2023-12-24T09:09:25Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp 169.254.105.43: io error: Cannot assign requested address (os error 99) [2023-12-24T09:09:25Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp 169.254.153.137: io error: Cannot assign requested address (os error 99) [2023-12-24T09:09:25Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp 169.254.150.118: io error: Cannot assign requested address (os error 99) [2023-12-24T09:09:25Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not get server reflexive address udp6 stun:stun.l.google.com:19302: io error: Network is unreachable (os error 101) ---- SECOND TRY ---- [2023-12-24T09:09:49Z INFO xwebrtc::session] 1:whip,2:live,3:test [2023-12-24T09:09:49Z INFO streamhub] event data: {"Publish":{"identifier":{"WebRTC":{"app_name":"live","stream_name":"test"}},"info":{"id":"1703408989","sub_type":"PushWebRTC","notify_info":{"request_url":"","remote_addr":""}}}} [2023-12-24T09:09:49Z ERROR streamhub] event_loop Publish err: exists [2023-12-24T09:09:49Z INFO webrtc::peer_connection] signaling state changed to have-remote-offer [2023-12-24T09:09:49Z INFO webrtc_ice::mdns] mDNS is using 224.0.0.251:5353 as dest_addr [2023-12-24T09:09:49Z WARN webrtc_ice::agent] Failed to initialize mDNS 66fdc5f0-cfbf-4dfb-9ba0-2004410b40c3.local: io error: Cannot assign requested address (os error 99) [2023-12-24T09:09:49Z INFO webrtc::peer_connection] signaling state changed to stable [2023-12-24T09:09:49Z DEBUG webrtc_ice::agent::agent_internal] Started agent: isControlling? false, remoteUfrag: VnCF, remotePwd: HTHFbtAcObL9EDcRj0dPcm [2023-12-24T09:09:49Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Checking [2023-12-24T09:09:49Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp fe:80::: io error: Cannot assign requested address (os error 99) [2023-12-24T09:09:49Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp 169.254.150.118: io error: Cannot assign requested address (os error 99) [2023-12-24T09:09:49Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not get server reflexive address udp6 stun:stun.l.google.com:19302: io error: Network is unreachable (os error 101) [2023-12-24T09:09:49Z INFO webrtc::peer_connection] ICE connection state changed: checking [2023-12-24T09:09:49Z INFO xwebrtc::whip] Connection State has changed checking [2023-12-24T09:09:49Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp 169.254.221.23: io error: Cannot assign requested address (os error 99) [2023-12-24T09:09:49Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp 169.254.153.137: io error: Cannot assign requested address (os error 99) [2023-12-24T09:09:49Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp 169.254.105.43: io error: Cannot assign requested address (os error 99) [2023-12-24T09:09:55Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.23.224.1:58572: the agent is closed [2023-12-24T09:09:55Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.21.128.1:58572: the agent is closed [2023-12-24T09:09:55Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.22.160.1:58572: the agent is closed [2023-12-24T09:09:55Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 192.168.124.30:58572: the agent is closed [2023-12-24T09:09:55Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.31.16.1:58572: the agent is closed [2023-12-24T09:09:55Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Failed [2023-12-24T09:09:55Z INFO webrtc::peer_connection] ICE connection state changed: failed [2023-12-24T09:09:55Z INFO xwebrtc::whip] Connection State has changed failed [2023-12-24T09:09:55Z INFO webrtc::peer_connection] peer connection state changed: failed [2023-12-24T09:09:55Z INFO xwebrtc::whip] Peer Connection State has changed: failed Peer Connection has gone to failed exiting: Done forwarding ```

What draws my attention here is that the IP addresses in the logs always belong to the "private network". For example, fd... for ipv6 in the first comment, 192...,169...,172... for ipv4 in this comment. I now have a serious suspicion that this might be related to the network configuration on WSL, but I cannot understand the situation of the other commenters. I hope to try it on VM during the day and share the results.

ghost commented 6 months ago

Finally, I created an ubuntu@22.04.3-desktop virtual machine with hyperv and ran a few tests using obs@30.0.2 on windows.

xiu logs: As soon as I saw the connection error box in obs, I tried to start the stream again and the beginning of the second request was separated by ----. ``` [2023-12-24T12:20:50Z INFO xwebrtc::webrtc] WebRTC server listening on tcp://0.0.0.0:8900 [2023-12-24T12:20:50Z INFO xiu::api] Http api server listening on http://:8080 [2023-12-24T12:20:50Z INFO rtmp::rtmp] Rtmp server listening on tcp://0.0.0.0:1935 [2023-12-24T12:22:08Z INFO xwebrtc::session] 1:whip,2:live,3:test [2023-12-24T12:22:08Z INFO streamhub] event data: {"Publish":{"identifier":{"WebRTC":{"app_name":"live","stream_name":"test"}},"info":{"id":"1703420528","sub_type":"PushWebRTC","notify_info":{"request_url":"","remote_addr":""}}}} [2023-12-24T12:22:08Z INFO streamhub] transmiter exits: idetifier: WebRTC - app_name: live, stream_name: test [2023-12-24T12:22:08Z INFO webrtc::peer_connection] signaling state changed to have-remote-offer [2023-12-24T12:22:08Z INFO webrtc_ice::mdns] mDNS is using 224.0.0.251:5353 as dest_addr [2023-12-24T12:22:08Z INFO webrtc_mdns::conn] Looping and listening Ok(224.0.0.251:5353) [2023-12-24T12:22:08Z INFO webrtc::peer_connection] signaling state changed to stable [2023-12-24T12:22:08Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp fe:80::: io error: Cannot assign requested address (os error 99) [2023-12-24T12:22:08Z DEBUG webrtc_ice::agent::agent_internal] Started agent: isControlling? false, remoteUfrag: sD70, remotePwd: eQ0h4oftbfmBy0HMr8Lc4E [2023-12-24T12:22:08Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Checking [2023-12-24T12:22:08Z INFO webrtc::peer_connection] ICE connection state changed: checking [2023-12-24T12:22:08Z INFO xwebrtc::whip] Connection State has changed checking [2023-12-24T12:22:08Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not get server reflexive address udp6 stun:stun.l.google.com:19302: io error: Network is unreachable (os error 101) [2023-12-24T12:22:38Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.21.128.1:53403: the agent is closed [2023-12-24T12:22:38Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.22.160.1:53403: the agent is closed [2023-12-24T12:22:38Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 192.168.124.30:53403: the agent is closed [2023-12-24T12:22:38Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.31.16.1:53403: the agent is closed [2023-12-24T12:22:38Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.22.192.1:53403: the agent is closed [2023-12-24T12:22:38Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Failed [2023-12-24T12:22:38Z INFO webrtc::peer_connection] ICE connection state changed: failed [2023-12-24T12:22:38Z INFO xwebrtc::whip] Connection State has changed failed [2023-12-24T12:22:38Z INFO webrtc::peer_connection] peer connection state changed: failed [2023-12-24T12:22:38Z INFO xwebrtc::whip] Peer Connection State has changed: failed Peer Connection has gone to failed exiting: Done forwarding ---- SECOND TRY ---- [2023-12-24T12:23:12Z INFO xwebrtc::session] 1:whip,2:live,3:test [2023-12-24T12:23:12Z INFO streamhub] event data: {"Publish":{"identifier":{"WebRTC":{"app_name":"live","stream_name":"test"}},"info":{"id":"1703420592","sub_type":"PushWebRTC","notify_info":{"request_url":"","remote_addr":""}}}} [2023-12-24T12:23:12Z ERROR streamhub] event_loop Publish err: exists [2023-12-24T12:23:12Z INFO webrtc::peer_connection] signaling state changed to have-remote-offer [2023-12-24T12:23:12Z INFO webrtc_ice::mdns] mDNS is using 224.0.0.251:5353 as dest_addr [2023-12-24T12:23:12Z INFO webrtc_mdns::conn] Looping and listening Ok(224.0.0.251:5353) [2023-12-24T12:23:12Z INFO webrtc::peer_connection] signaling state changed to stable [2023-12-24T12:23:12Z DEBUG webrtc_ice::agent::agent_internal] Started agent: isControlling? false, remoteUfrag: 4UQV, remotePwd: 3FWJxdcdXnu/pXS0kQgbdp [2023-12-24T12:23:12Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Checking [2023-12-24T12:23:12Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:23:12Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:23:12Z INFO webrtc::peer_connection] ICE connection state changed: checking [2023-12-24T12:23:12Z INFO xwebrtc::whip] Connection State has changed checking [2023-12-24T12:23:12Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp fe:80::: io error: Cannot assign requested address (os error 99) [2023-12-24T12:23:12Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not get server reflexive address udp6 stun:stun.l.google.com:19302: io error: Network is unreachable (os error 101) [2023-12-24T12:23:42Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.21.128.1:57332: the agent is closed [2023-12-24T12:23:42Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.22.160.1:57332: the agent is closed [2023-12-24T12:23:42Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 192.168.124.30:57332: the agent is closed [2023-12-24T12:23:42Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.31.16.1:57332: the agent is closed [2023-12-24T12:23:42Z WARN webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.22.192.1:57332: the agent is closed [2023-12-24T12:23:42Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Failed [2023-12-24T12:23:42Z INFO webrtc::peer_connection] ICE connection state changed: failed [2023-12-24T12:23:42Z INFO xwebrtc::whip] Connection State has changed failed [2023-12-24T12:23:42Z INFO webrtc::peer_connection] peer connection state changed: failed [2023-12-24T12:23:42Z INFO xwebrtc::whip] Peer Connection State has changed: failed Peer Connection has gone to failed exiting: Done forwarding ```
OBS logs (only the relevant part): ``` 15:21:50.666: --------------------------------- 15:21:50.666: [x264 encoder: 'simple_video_stream'] preset: veryfast 15:21:50.667: [x264 encoder: 'simple_video_stream'] settings: 15:21:50.667: rate_control: CBR 15:21:50.667: bitrate: 2500 15:21:50.667: buffer size: 2500 15:21:50.667: crf: 23 15:21:50.667: fps_num: 30 15:21:50.667: fps_den: 1 15:21:50.667: width: 1092 15:21:50.667: height: 614 15:21:50.667: keyint: 250 15:21:50.667: 15:21:50.678: --------------------------------- 15:21:50.678: [FFmpeg libopus encoder: 'simple_opus'] bitrate: 160, channels: 2, channel_layout: stereo 15:21:50.678: 15:21:50.701: [obs-webrtc] [whip_output: 'simple_stream'] PeerConnection state is now: Connecting 15:21:52.941: [obs-webrtc] [whip_output: 'simple_stream'] Connect failed: CURL returned result not CURLE_OK 15:21:52.942: [obs-webrtc] [whip_output: 'simple_stream'] PeerConnection state is now: Closed 15:21:52.942: ==== Streaming Stop ================================================ 15:22:06.361: Settings changed (stream 1) 15:22:06.361: ------------------------------------------------ 15:22:07.463: [obs-webrtc] [whip_output: 'simple_stream'] PeerConnection state is now: Connecting 15:22:15.467: [obs-webrtc] [whip_output: 'simple_stream'] Connect failed: CURL returned result not CURLE_OK 15:22:15.467: [obs-webrtc] [whip_output: 'simple_stream'] PeerConnection state is now: Closed 15:22:15.467: ==== Streaming Stop ================================================ 15:23:11.425: [obs-webrtc] [whip_output: 'simple_stream'] PeerConnection state is now: Connecting 15:23:19.427: [obs-webrtc] [whip_output: 'simple_stream'] Connect failed: CURL returned result not CURLE_OK 15:23:19.427: [obs-webrtc] [whip_output: 'simple_stream'] PeerConnection state is now: Closed 15:23:19.427: ==== Streaming Stop ================================================ ```

Again, it seems that the stream cannot be started when WHIP used. Then, I'm trying to start a stream using RTMP to test WHEP.

xiu logs: ``` [2023-12-24T12:41:46Z INFO xwebrtc::webrtc] WebRTC server listening on tcp://0.0.0.0:8900 [2023-12-24T12:41:46Z INFO rtmp::rtmp] Rtmp server listening on tcp://0.0.0.0:1935 [2023-12-24T12:41:46Z INFO xiu::api] Http api server listening on http://:8080 [2023-12-24T12:44:01Z INFO rtmp::session::server_session] server session: 172.22.160.1:54396 [2023-12-24T12:44:01Z INFO rtmp::handshake::handshake_server] [ S<-C ] [complex handshake] read C0C1 [2023-12-24T12:44:01Z WARN rtmp::handshake::handshake_server] complex handshake failed.. err:digest error: cannot generate digest [2023-12-24T12:44:01Z INFO rtmp::handshake::handshake_server] [ S<-C ] [simple handshake] read C0C1 [2023-12-24T12:44:01Z INFO rtmp::handshake::handshake_server] [ S->C ] [simple handshake] write S0S1S2 [2023-12-24T12:44:01Z INFO rtmp::handshake::handshake_server] [ S<-C ] [simple handshake] read C2 [2023-12-24T12:44:01Z INFO rtmp::handshake::handshake_server] simple handshake successfully.. [2023-12-24T12:44:01Z INFO rtmp::session::server_session] [ S->C ] [send_set_chunk_size] [2023-12-24T12:44:01Z INFO rtmp::session::server_session] [ S<-C ] [set chunk size] app_name: , stream_name: , chunk size: 4096 [2023-12-24T12:44:01Z INFO rtmp::session::server_session] [ S<-C ] [connect] [2023-12-24T12:44:01Z WARN rtmp::session::server_session] unknown connect properties: type:UTF8String("nonprivate") [2023-12-24T12:44:01Z INFO rtmp::session::server_session] connect properties: ConnectProperties { app: Some("app/test"), flash_ver: Some("FMLE/3.0 (compatible; FMSc/1.0)"), swf_url: Some("rtmp://172.22.173.231:1935/app/test"), tc_url: Some("rtmp://172.22.173.231:1935/app/test"), fpad: None, capabilities: None, audio_codecs: None, video_codecs: None, video_function: None, object_encoding: None, page_url: None, pub_type: None } [2023-12-24T12:44:01Z INFO rtmp::session::server_session] [ S->C ] [set window_acknowledgement_size] [2023-12-24T12:44:01Z INFO rtmp::session::server_session] [ S->C ] [set set_peer_bandwidth] [2023-12-24T12:44:01Z INFO rtmp::session::server_session] [ S->C ] [set connect_response] [2023-12-24T12:44:01Z INFO rtmp::session::server_session] [ S<-C ] [create stream] [2023-12-24T12:44:01Z INFO rtmp::session::server_session] [ S->C ] [create_stream_response] app_name: app/test [2023-12-24T12:44:01Z INFO rtmp::session::server_session] [ S<-C ] [publish] app_name: app/test, stream_name: , url parameters: [2023-12-24T12:44:01Z INFO rtmp::session::server_session] [ S->C ] [stream begin] app_name: app/test, stream_name: , url parameters: [2023-12-24T12:44:01Z INFO rtmp::session::server_session] [ S->C ] [NetStream.Publish.Start] app_name: app/test, stream_name: [2023-12-24T12:44:01Z INFO streamhub] event data: {"Publish":{"identifier":{"Rtmp":{"app_name":"app/test","stream_name":""}},"info":{"id":"17034218412847","sub_type":"PushRtmp","notify_info":{"request_url":"rtmp://172.22.173.231:1935/app/test/","remote_addr":"172.22.160.1:54396"}}}} [2023-12-24T12:44:01Z INFO streamhub] transmiter exits: idetifier: RTMP - app_name: app/test, stream_name: [2023-12-24T12:44:01Z INFO rtmp::cache::metadata] metadata: [UTF8String("@setDataFrame"), UTF8String("onMetaData"), Object({"duration": Number(0.0), "fileSize": Number(0.0), "width": Number(1092.0), "height": Number(614.0), "videocodecid": Number(7.0), "videodatarate": Number(2500.0), "framerate": Number(30.0), "audiocodecid": Number(10.0), "audiodatarate": Number(160.0), "audiosamplerate": Number(48000.0), "audiosamplesize": Number(16.0), "audiochannels": Number(2.0), "stereo": Boolean(true), "2.1": Boolean(false), "3.1": Boolean(false), "4.0": Boolean(false), "4.1": Boolean(false), "5.1": Boolean(false), "7.1": Boolean(false), "encoder": UTF8String("obs-output module (libobs version 30.0.2)")})] [2023-12-24T12:44:02Z INFO h264_decoder::sps] profile_idc: 100 [2023-12-24T12:44:02Z INFO h264_decoder::sps] level_idc: 31 [2023-12-24T12:44:02Z INFO xflv::mpeg4_avc] mpeg4 avc profile: 100 [2023-12-24T12:44:02Z INFO xflv::mpeg4_avc] mpeg4 avc compatibility: 0 [2023-12-24T12:44:02Z INFO xflv::mpeg4_avc] mpeg4 avc level: 31 [2023-12-24T12:44:02Z INFO xflv::mpeg4_avc] mpeg4 avc resolution: 1092x614 [2023-12-24T12:44:18Z DEBUG hyper::proto::h1::io] parsed 11 headers [2023-12-24T12:44:18Z DEBUG hyper::proto::h1::conn] incoming body is empty [2023-12-24T12:44:18Z DEBUG hyper::proto::h1::io] flushed 314 bytes [2023-12-24T12:44:19Z DEBUG hyper::proto::h1::io] parsed 10 headers [2023-12-24T12:44:19Z DEBUG hyper::proto::h1::conn] incoming body is empty [2023-12-24T12:44:19Z DEBUG hyper::proto::h1::io] flushed 82 bytes [2023-12-24T12:44:19Z DEBUG hyper::proto::h1::conn] read eof [2023-12-24T12:44:19Z DEBUG hyper::proto::h1::conn] error shutting down IO: Transport endpoint is not connected (os error 107) [2023-12-24T12:44:19Z DEBUG hyper::server::server::new_svc] connection error: error shutting down connection: Transport endpoint is not connected (os error 107) [2023-12-24T12:44:26Z DEBUG hyper::proto::h1::io] parsed 11 headers [2023-12-24T12:44:26Z DEBUG hyper::proto::h1::conn] incoming body is empty [2023-12-24T12:44:26Z DEBUG hyper::proto::h1::io] flushed 422 bytes [2023-12-24T12:44:39Z WARN xwebrtc::session] the http get path: /favicon.ico is not supported. [2023-12-24T12:44:39Z WARN xwebrtc::session] the http get path: /favicon.ico is not supported. [2023-12-24T12:44:39Z WARN xwebrtc::session] the http get path: /favicon.ico is not supported. [2023-12-24T12:44:39Z WARN xwebrtc::session] the http get path: /favicon.ico is not supported. [2023-12-24T12:44:39Z WARN xwebrtc::session] the http get path: /favicon.ico is not supported. [2023-12-24T12:44:39Z WARN xwebrtc::session] the http get path: /favicon.ico is not supported. [2023-12-24T12:44:39Z WARN xwebrtc::session] the http get path: /favicon.ico is not supported. [2023-12-24T12:44:39Z WARN xwebrtc::session] the http get path: /favicon.ico is not supported. [2023-12-24T12:44:39Z WARN xwebrtc::session] the http get path: /favicon.ico is not supported. [2023-12-24T12:44:39Z WARN xwebrtc::session] the http get path: /favicon.ico is not supported. [2023-12-24T12:44:41Z INFO xwebrtc::session] 1:whep,2:live,3:test [2023-12-24T12:44:41Z INFO streamhub] event data: {"Subscribe":{"identifier":{"WebRTC":{"app_name":"live","stream_name":"test"}},"info":{"id":"1703421881","sub_type":"PlayerWebrtc","notify_info":{"request_url":"","remote_addr":""}}}} [2023-12-24T12:44:41Z ERROR streamhub] event_loop Subscribe error: no app or stream name [2023-12-24T12:44:41Z INFO webrtc::peer_connection] signaling state changed to have-remote-offer [2023-12-24T12:44:41Z INFO webrtc_ice::mdns] mDNS is using 224.0.0.251:5353 as dest_addr [2023-12-24T12:44:41Z INFO webrtc_mdns::conn] Looping and listening Ok(224.0.0.251:5353) [2023-12-24T12:44:41Z DEBUG webrtc_ice::agent::agent_internal] Started agent: isControlling? false, remoteUfrag: 5edd3d20, remotePwd: 64f64f5878996043c41abd8926fa0594 [2023-12-24T12:44:41Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Checking [2023-12-24T12:44:41Z INFO webrtc::peer_connection] signaling state changed to stable [2023-12-24T12:44:41Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp fe:80::: io error: Cannot assign requested address (os error 99) [2023-12-24T12:44:41Z INFO webrtc::peer_connection] ICE connection state changed: checking [2023-12-24T12:44:41Z INFO xwebrtc::whep] Connection State has changed checking [2023-12-24T12:44:41Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:41Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not get server reflexive address udp6 stun:stun.l.google.com:19302: io error: Network is unreachable (os error 101) [2023-12-24T12:44:41Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:41Z INFO xwebrtc::session] before whep 1 [2023-12-24T12:44:42Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:42Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:42Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:42Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:42Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:43Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:43Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:43Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:43Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:43Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:44Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:44Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:44Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:44Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:44Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:45Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:45Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:45Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:45Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:45Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:46Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:46Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:46Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:46Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:46Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:47Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:47Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:47Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:47Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:47Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:48Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:48Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:48Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:48Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:48Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:49Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:49Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:49Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:49Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:49Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:50Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:50Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:50Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:50Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:50Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:51Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:51Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:51Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:51Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:51Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:52Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:52Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:52Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:52Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:52Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:53Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:53Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:53Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:53Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:53Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:54Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:54Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:54Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:54Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:54Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:55Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:55Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:55Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:55Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:55Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:56Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:56Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:56Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:56Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:57Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:57Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:57Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:57Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:57Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:58Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:58Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:58Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:58Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:58Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:59Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:59Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:59Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:59Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:44:59Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:00Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:00Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:00Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:00Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:00Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:01Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:01Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:01Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:01Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:01Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:02Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:02Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:02Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:02Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:02Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:03Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:03Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:03Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:03Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:03Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:04Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:04Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:04Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:04Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:04Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:05Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:05Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:05Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:05Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:05Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:06Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:06Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:06Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:06Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:06Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:07Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:07Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:07Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:07Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:07Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:08Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:08Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:08Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:08Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:08Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:09Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:09Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:09Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:09Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:09Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:10Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:10Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:10Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:10Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:10Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:11Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:11Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:11Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:11Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T12:45:11Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Failed [2023-12-24T12:45:11Z INFO webrtc::peer_connection] ICE connection state changed: failed [2023-12-24T12:45:11Z INFO xwebrtc::whep] Connection State has changed failed [2023-12-24T12:45:11Z INFO webrtc::peer_connection] peer connection state changed: failed [2023-12-24T12:45:11Z INFO xwebrtc::whep] Peer Connection State has changed: failed [2023-12-24T12:45:11Z INFO xwebrtc::whep] Peer Connection has gone to failed exiting: Done forwarding [2023-12-24T12:45:11Z INFO xwebrtc::session] state: failed [2023-12-24T12:45:11Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Closed [2023-12-24T12:45:11Z INFO webrtc::peer_connection] peer connection state changed: closed [2023-12-24T12:45:11Z INFO xwebrtc::whep] Peer Connection State has changed: closed [2023-12-24T12:45:11Z INFO xwebrtc::session] state: closed [2023-12-24T12:45:11Z INFO streamhub] event data: {"UnSubscribe":{"identifier":{"WebRTC":{"app_name":"live","stream_name":"test"}},"info":{"id":"1703421881","sub_type":"PlayerWebrtc","notify_info":{"request_url":"","remote_addr":""}}}} [2023-12-24T12:45:11Z WARN webrtc::peer_connection::peer_connection_internal] Failed to start manager ice: connecting canceled by caller [2023-12-24T12:45:11Z INFO webrtc_mdns::conn] Closing server connection [2023-12-24T12:45:11Z INFO webrtc::peer_connection] ICE connection state changed: closed [2023-12-24T12:45:11Z INFO xwebrtc::whep] Connection State has changed closed [2023-12-24T12:45:19Z INFO rtmp::session::server_session] [ S<-C ] [delete stream] app_name: app/test, stream_name: [2023-12-24T12:45:19Z INFO rtmp::session::common] unpublish_to_channels, app_name:app/test, stream_name: [2023-12-24T12:45:19Z INFO rtmp::session::common] unpublish_to_channels successfully.app_name: app/test, stream_name: [2023-12-24T12:45:19Z INFO rtmp::session::server_session] [ S->C ] [delete stream success] app_name: app/test, stream_name: [2023-12-24T12:45:19Z INFO streamhub] event data: {"UnPublish":{"identifier":{"Rtmp":{"app_name":"app/test","stream_name":""}},"info":{"id":"17034218412847","sub_type":"PushRtmp","notify_info":{"request_url":"rtmp://172.22.173.231:1935/app/test/","remote_addr":"172.22.160.1:54396"}}}} [2023-12-24T12:45:19Z INFO streamhub] unpublish remove stream, stream identifier: RTMP - app_name: app/test, stream_name: [2023-12-24T12:45:19Z INFO streamhub::statistics::avstatistics] avstatistics shutting down [2023-12-24T12:45:37Z DEBUG hyper::proto::h1::conn] read eof ```

_There seems to be a minor problem with RTMP (When we do rtmp://ip:port/appname/streamname, stream_name appears empty and all parameters are set to app_name.), I noticed that streamname is taken from stream key. but WHEP is definitely not working at all. Additionally, I tried to connect to STUN servers separately and there were no problems.

ghost commented 6 months ago

I also tried the webrtc-rs broadcast example in the vm in the previous comment and I was able to manually transfer the base64encoded sdp (as in readme) and start streaming.

I am sharing the full logs: If you look carefully, you will see a bit long base64 string somewhere. ``` wait for the offer from http_sdp_server webrtc/src/peer_connection/mod.rs:298 [INFO] 16:31:49.978815 - signaling state changed to have-remote-offer ice/src/mdns/mod.rs:61 [INFO] 16:31:49.983804 - mDNS is using 224.0.0.251:5353 as dest_addr mdns/src/conn/mod.rs:89 [TRACE] 16:31:49.984186 - Connected to interface address 127.0.0.1:0 mdns/src/conn/mod.rs:89 [TRACE] 16:31:49.984277 - Connected to interface address 172.22.173.231:0 mdns/src/conn/mod.rs:254 [INFO] 16:31:49.984564 - Looping and listening Ok(224.0.0.251:5353) ice/src/agent/agent_internal.rs:332 [TRACE] 16:31:49.985387 - [controlled]: Set selected candidate pair: None webrtc/src/peer_connection/mod.rs:1581 [TRACE] 16:31:49.986128 - start_transports: ice_role=controlled, dtls_role=auto ice/src/agent/agent_internal.rs:182 [DEBUG] 16:31:49.986637 - Started agent: isControlling? false, remoteUfrag: 4f082ac2, remotePwd: 993c460b0992059b61bd81f771b5e486 ice/src/agent/agent_internal.rs:312 [INFO] 16:31:49.986802 - [controlled]: Setting new connection state: Checking webrtc/src/peer_connection/mod.rs:298 [INFO] 16:31:49.986982 - signaling state changed to stable webrtc/src/rtp_transceiver/mod.rs:364 [TRACE] 16:31:49.987194 - Changing current direction of transceiver from Unspecified to sendrecv webrtc/src/rtp_transceiver/mod.rs:387 [TRACE] 16:31:49.987245 - Processing transceiver(Some("0")) direction change from Unspecified to sendrecv webrtc/src/peer_connection/mod.rs:620 [INFO] 16:31:49.987225 - ICE connection state changed: checking ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:49.987634 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:374 [WARN] 16:31:49.987738 - [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:49.988398 - [controlled]: pinging all candidates ice/src/agent/agent_gather.rs:286 [WARN] 16:31:49.988377 - [controlled]: could not listen udp fe80::b0ae:1c46:76f8:5a61: io error: Invalid argument (os error 22) ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:49.988576 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:49.991710 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:49.991917 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:49.992074 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:49.992243 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:49.992450 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:49.992581 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:49.992696 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:49.992813 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:49.992949 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:49.993067 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:49.993296 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_gather.rs:652 [WARN] 16:31:50.010656 - [controlled]: could not get server reflexive address udp6 stun:stun.l.google.com:19302: io error: Network is unreachable (os error 101) ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:50.062182 - [controlled]: pinging all candidates webrtc/src/peer_connection/mod.rs:2082 [TRACE] 16:31:50.062240 - setGatherCompleteHandler ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.062423 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.062554 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.062647 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60200 eyJ0eXBlIjoiYW5zd2VyIiwic2RwIjoidj0wXHJcbm89LSA2NDQyNTU5NTM0MjgxNjIxOTI5IDk4NjEzMjQyMiBJTiBJUDQgMC4wLjAuMFxyXG5zPS1cclxudD0wIDBcclxuYT1maW5nZXJwcmludDpzaGEtMjU2IDkyOjNBOjA2OkYxOjBDOkQ2OjNFOjBFOkFCOjY1Ojk4OkI2OjYzOjEwOjMxOjAwOjFCOkYzOjg3OjUwOjE5OkRGOjFEOkNCOjhEOjQ0OjdGOkUyOkJGOjEzOjFDOjUzXHJcbmE9Z3JvdXA6QlVORExFIDBcclxubT12aWRlbyA5IFVEUC9UTFMvUlRQL1NBVlBGIDEyMCAxMjEgMTI2XHJcbmM9SU4gSVA0IDAuMC4wLjBcclxuYT1zZXR1cDphY3RpdmVcclxuYT1taWQ6MFxyXG5hPWljZS11ZnJhZzpzZ3FJSGxLRnJycVRwYlVqXHJcbmE9aWNlLXB3ZDpmaVJMaGFpb0xjeFVkYXBFZWRjZUpITWFBR2lNRmF6ZlxyXG5hPXJ0Y3AtbXV4XHJcbmE9cnRjcC1yc2l6ZVxyXG5hPXJ0cG1hcDoxMjAgVlA4LzkwMDAwXHJcbmE9Zm10cDoxMjAgbWF4LWZzPTEyMjg4O21heC1mcj02MFxyXG5hPXJ0Y3AtZmI6MTIwIG5hY2tcclxuYT1ydGNwLWZiOjEyMCBuYWNrIHBsaVxyXG5hPXJ0Y3AtZmI6MTIwIGNjbSBmaXJcclxuYT1ydGNwLWZiOjEyMCBnb29nLXJlbWJcclxuYT1ydGNwLWZiOjEyMCB0cmFuc3BvcnQtY2NcclxuYT1ydHBtYXA6MTIxIFZQOS85MDAwMFxyXG5hPWZtdHA6MTIxIG1heC1mcz0xMjI4ODttYXgtZnI9NjBcclxuYT1ydGNwLWZiOjEyMSBuYWNrXHJcbmE9cnRjcC1mYjoxMjEgbmFjayBwbGlcclxuYT1ydGNwLWZiOjEyMSBjY20gZmlyXHJcbmE9cnRjcC1mYjoxMjEgZ29vZy1yZW1iXHJcbmE9cnRjcC1mYjoxMjEgdHJhbnNwb3J0LWNjXHJcbmE9cnRwbWFwOjEyNiBIMjY0LzkwMDAwXHJcbmE9Zm10cDoxMjYgcHJvZmlsZS1sZXZlbC1pZD00MmUwMWY7bGV2ZWwtYXN5bW1ldHJ5LWFsbG93ZWQ9MTtwYWNrZXRpemF0aW9uLW1vZGU9MVxyXG5hPXJ0Y3AtZmI6MTI2IG5hY2tcclxuYT1ydGNwLWZiOjEyNiBuYWNrIHBsaVxyXG5hPXJ0Y3AtZmI6MTI2IGNjbSBmaXJcclxuYT1ydGNwLWZiOjEyNiBnb29nLXJlbWJcclxuYT1ydGNwLWZiOjEyNiB0cmFuc3BvcnQtY2NcclxuYT1leHRtYXA6NyBodHRwOi8vd3d3LmlldGYub3JnL2lkL2RyYWZ0LWhvbG1lci1ybWNhdC10cmFuc3BvcnQtd2lkZS1jYy1leHRlbnNpb25zLTAxXHJcbmE9c2VuZHJlY3ZcclxuYT1jYW5kaWRhdGU6MTA2ODg4MDg5NCAxIHVkcCAyMTMwNzA2NDMxIDE3Mi4yMi4xNzMuMjMxIDU5MDkzIHR5cCBob3N0XHJcbmE9Y2FuZGlkYXRlOjEwNjg4ODA4OTQgMiB1ZHAgMjEzMDcwNjQzMSAxNzIuMjIuMTczLjIzMSA1OTA5MyB0eXAgaG9zdFxyXG5hPWNhbmRpZGF0ZTo5NTk1MTM3MzEgMSB1ZHAgMTY5NDQ5ODgxNSAzMS4yMjMuNjUuNCAxODUwOSB0eXAgc3JmbHggcmFkZHIgMC4wLjAuMCBycG9ydCA0ODA4OVxyXG5hPWNhbmRpZGF0ZTo5NTk1MTM3MzEgMiB1ZHAgMTY5NDQ5ODgxNSAzMS4yMjMuNjUuNCAxODUwOSB0eXAgc3JmbHggcmFkZHIgMC4wLjAuMCBycG9ydCA0ODA4OVxyXG5hPWVuZC1vZi1jYW5kaWRhdGVzXHJcbiJ9 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.062735 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.062832 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.063016 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.063122 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.063310 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.063481 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.063621 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.063874 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.064094 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.064292 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.064416 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.064565 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.064711 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.064870 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.065015 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.065133 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.065282 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.065420 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.065567 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.065746 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.065923 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:50.267783 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.267967 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.268154 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.268271 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.268382 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.268493 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.268603 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.268711 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.268911 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.269130 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.269317 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.269480 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.269671 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.269943 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.270091 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.270228 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.270343 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.270489 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.270697 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.270930 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.271112 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.271304 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.271888 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.272352 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.272636 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:50.473495 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.473711 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.473944 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.474197 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.474516 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.474679 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.474813 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.474960 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.475122 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.475231 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.475378 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.475575 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.475761 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.476130 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.476373 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.476557 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.476702 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.476968 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.477122 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.477258 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.477392 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.477550 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.477690 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.477969 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.478135 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:50.680059 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.680249 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.680475 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.680741 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.681056 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.681244 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.681413 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.681610 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.681836 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.682067 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.682269 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.682395 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.682714 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.682898 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.683066 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.683245 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.683498 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.683650 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.683834 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.684020 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.684193 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.684330 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.684528 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.684987 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.685211 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:50.886978 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.887272 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.887509 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.887711 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.887929 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.888163 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.888349 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.888509 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.889218 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.889985 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.890385 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.890582 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.890780 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.890997 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.891199 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.891365 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.891511 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.891722 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.891866 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.892028 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.892173 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.892314 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.892429 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.892608 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:50.892765 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:51.094019 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.094310 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.094565 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.094934 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.095136 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.095265 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.095395 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.095572 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.095755 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.096142 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.096325 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.096496 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.096640 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.096819 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.097012 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.097191 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.097384 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.097558 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.097736 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.097967 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.098280 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.098596 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.098920 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.099244 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.099661 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:51.300582 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.300822 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.301056 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.301267 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.301554 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.301752 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.301903 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.302054 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.302191 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.302345 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.302511 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.302652 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.302768 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.302961 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.303116 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.303256 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.303415 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.303582 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.303735 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.304104 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.304296 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.304466 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.304615 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.304735 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.304884 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:51.506440 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.506537 - [controlled]: max requests reached for pair prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.22.160.1:60198 (remote, prio 2122187007), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.506591 - [controlled]: max requests reached for pair prio 9114160843247058687 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.31.16.1:60199 (remote, prio 2122055935), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.506615 - [controlled]: max requests reached for pair prio 9113879368270413567 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 192.168.124.30:60200 (remote, prio 2121990399), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.506646 - [controlled]: max requests reached for pair prio 9114442318223703807 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.21.128.1:60201 (remote, prio 2122121471), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.506671 - [controlled]: max requests reached for pair prio 9115005268176994047 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.22.192.1:60202 (remote, prio 2122252543), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.506704 - [controlled]: max requests reached for pair prio 9113879363975446272 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 192.168.124.30:60205 (remote, prio 2121990398), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.506761 - [controlled]: max requests reached for pair prio 9114442313928736512 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.21.128.1:60206 (remote, prio 2122121470), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.506797 - [controlled]: max requests reached for pair prio 9115005263882026752 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.22.192.1:60207 (remote, prio 2122252542), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.506832 - [controlled]: max requests reached for pair prio 7240416008580947967 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 (remote, prio 1685790719), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.506868 - [controlled]: max requests reached for pair prio 7240416004285980672 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 (remote, prio 1685790718), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.506903 - [controlled]: max requests reached for pair prio 9114723788905381632 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.22.160.1:60203 (remote, prio 2122187006), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.506937 - [controlled]: max requests reached for pair prio 9114160838952091392 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.31.16.1:60204 (remote, prio 2122055934), marking it as failed ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.507083 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.507368 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60199 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.507633 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.507933 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60201 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.508221 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60202 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.508476 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.508756 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.21.128.1:60206 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.509031 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.192.1:60207 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.509310 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.509592 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.509918 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.22.160.1:60203 ice/src/agent/agent_internal.rs:715 [TRACE] 16:31:51.510229 - [controlled]: ping STUN from udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 to udp4 host 172.31.16.1:60204 ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:51.712267 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.712432 - [controlled]: max requests reached for pair prio 7277816996085629440 (local, prio 1694498815) udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 <-> udp4 host 172.22.160.1:60198 (remote, prio 2122187007), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.712487 - [controlled]: max requests reached for pair prio 7277816996085367296 (local, prio 1694498815) udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 <-> udp4 host 172.31.16.1:60199 (remote, prio 2122055935), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.712520 - [controlled]: max requests reached for pair prio 7277816996085236224 (local, prio 1694498815) udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 <-> udp4 host 192.168.124.30:60200 (remote, prio 2121990399), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.712549 - [controlled]: max requests reached for pair prio 7277816996085498368 (local, prio 1694498815) udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 <-> udp4 host 172.21.128.1:60201 (remote, prio 2122121471), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.712579 - [controlled]: max requests reached for pair prio 7277816996085760512 (local, prio 1694498815) udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 <-> udp4 host 172.22.192.1:60202 (remote, prio 2122252543), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.712608 - [controlled]: max requests reached for pair prio 7277816996085236222 (local, prio 1694498815) udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 <-> udp4 host 192.168.124.30:60205 (remote, prio 2121990398), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.712637 - [controlled]: max requests reached for pair prio 7277816996085498366 (local, prio 1694498815) udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 <-> udp4 host 172.21.128.1:60206 (remote, prio 2122121470), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.712667 - [controlled]: max requests reached for pair prio 7277816996085760510 (local, prio 1694498815) udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 <-> udp4 host 172.22.192.1:60207 (remote, prio 2122252542), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.712696 - [controlled]: max requests reached for pair prio 7240416007708532735 (local, prio 1694498815) udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 <-> udp4 srflx 31.223.65.4:19007 related 192.168.124.30:60200 (remote, prio 1685790719), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.712726 - [controlled]: max requests reached for pair prio 7240416003413565440 (local, prio 1694498815) udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 <-> udp4 srflx 31.223.65.4:19173 related 192.168.124.30:60205 (remote, prio 1685790718), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.712756 - [controlled]: max requests reached for pair prio 7277816996085629438 (local, prio 1694498815) udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 <-> udp4 host 172.22.160.1:60203 (remote, prio 2122187006), marking it as failed ice/src/agent/agent_internal.rs:389 [TRACE] 16:31:51.712785 - [controlled]: max requests reached for pair prio 7277816996085367294 (local, prio 1694498815) udp4 srflx 31.223.65.4:18509 related 0.0.0.0:48089 <-> udp4 host 172.31.16.1:60204 (remote, prio 2122055934), marking it as failed ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:51.913544 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:52.114729 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:52.315965 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:52.518126 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:52.719492 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:52.920433 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:53.121853 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:53.323892 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:53.526040 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:53.727365 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:53.929201 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:54.131049 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:54.332786 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:54.534521 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:54.735509 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:54.936633 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:55.137508 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:55.339180 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:55.540389 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:55.741255 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:55.943119 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:56.144802 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:56.346831 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:56.548306 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:56.750219 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:56.951375 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:57.152369 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:57.353323 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:57.555193 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:57.756758 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:57.957528 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:58.158845 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:58.360639 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:58.562176 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:58.764194 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:58.965375 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:59.166808 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:59.367571 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:59.569218 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:59.771068 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:31:59.972921 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:00.175117 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:00.376870 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:00.578331 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:00.779876 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:00.981398 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:01.182570 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:01.384085 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:01.585074 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:01.786775 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:01.987863 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:02.189410 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:02.390322 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:02.591811 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:02.793578 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:02.994977 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:03.196917 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:03.398844 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:03.600514 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:03.802067 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:04.004189 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:04.206082 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:04.408180 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:04.609959 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:04.811597 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:05.012968 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:05.214670 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:05.415521 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:05.616624 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:05.817251 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:06.018510 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:06.219466 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:06.420451 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:06.621951 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:06.823972 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:07.025880 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:07.228603 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:07.430248 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:07.632206 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:07.834303 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:364 [TRACE] 16:32:08.036235 - [controlled]: pinging all candidates ice/src/agent/agent_internal.rs:961 [TRACE] 16:32:08.061009 - [controlled]: inbound STUN (Request) from 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_internal.rs:715 [TRACE] 16:32:08.061284 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_internal.rs:797 [TRACE] 16:32:08.061365 - [controlled]: Discarded 192 binding requests because they expired ice/src/agent/agent_selector.rs:481 [TRACE] 16:32:08.062560 - inbound STUN (SuccessResponse) from udp4 host 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_selector.rs:490 [TRACE] 16:32:08.062629 - Found valid candidate pair: prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.22.160.1:60198 (remote, prio 2122187007) ice/src/agent/agent_internal.rs:961 [TRACE] 16:32:08.090929 - [controlled]: inbound STUN (Request) from 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_internal.rs:332 [TRACE] 16:32:08.091031 - [controlled]: Set selected candidate pair: Some(prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.22.160.1:60198 (remote, prio 2122187007)) ice/src/agent/agent_internal.rs:312 [INFO] 16:32:08.091064 - [controlled]: Setting new connection state: Connected webrtc/src/peer_connection/mod.rs:620 [INFO] 16:32:08.091181 - ICE connection state changed: connected dtls/src/handshaker.rs:204 [TRACE] 16:32:08.091684 - [handshake:client] Flight 1: Preparing dtls/src/handshaker.rs:204 [TRACE] 16:32:08.091775 - [handshake:client] Flight 1: Sending dtls/src/conn/mod.rs:546 [TRACE] 16:32:08.091877 - Send [handshake:client] -> ClientHello (epoch: 0, seq: 0) dtls/src/handshaker.rs:204 [TRACE] 16:32:08.092191 - [handshake:client] Flight 1: Waiting dtls/src/conn/mod.rs:1012 [TRACE] 16:32:08.094154 - Recv [handshake:client] -> ServerHello (epoch: 0, seq: 0) dtls/src/conn/mod.rs:1012 [TRACE] 16:32:08.094253 - Recv [handshake:client] -> Certificate (epoch: 0, seq: 1) dtls/src/conn/mod.rs:1012 [TRACE] 16:32:08.094299 - Recv [handshake:client] -> ServerKeyExchange (epoch: 0, seq: 2) dtls/src/conn/mod.rs:1012 [TRACE] 16:32:08.094345 - Recv [handshake:client] -> CertificateRequest (epoch: 0, seq: 3) dtls/src/conn/mod.rs:1012 [TRACE] 16:32:08.094406 - Recv [handshake:client] -> ServerHelloDone (epoch: 0, seq: 4) dtls/src/flight/flight3.rs:280 [TRACE] 16:32:08.094590 - [handshake:client] use cipher suite: TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 dtls/src/handshaker.rs:345 [TRACE] 16:32:08.095770 - [handshake:client] Flight 1 -> Flight 5 dtls/src/handshaker.rs:204 [TRACE] 16:32:08.095844 - [handshake:client] Flight 5: Preparing dtls/src/crypto/mod.rs:340 [TRACE] 16:32:08.096506 - Picked an algorithm ECDSA_P256_SHA256_ASN1 dtls/src/handshaker.rs:286 [TRACE] 16:32:08.097234 - [handshake:client] -> changeCipherSpec (epoch: 1) dtls/src/handshaker.rs:204 [TRACE] 16:32:08.097270 - [handshake:client] Flight 5: Sending dtls/src/conn/mod.rs:546 [TRACE] 16:32:08.097397 - Send [handshake:client] -> Certificate (epoch: 0, seq: 1) dtls/src/conn/mod.rs:546 [TRACE] 16:32:08.097467 - Send [handshake:client] -> ClientKeyExchange (epoch: 0, seq: 2) dtls/src/conn/mod.rs:546 [TRACE] 16:32:08.097514 - Send [handshake:client] -> CertificateVerify (epoch: 0, seq: 3) dtls/src/conn/mod.rs:546 [TRACE] 16:32:08.097564 - Send [handshake:client] -> Finished (epoch: 1, seq: 4) dtls/src/handshaker.rs:204 [TRACE] 16:32:08.097893 - [handshake:client] Flight 5: Waiting dtls/src/conn/mod.rs:1101 [TRACE] 16:32:08.100032 - client: <- ChangeCipherSpec (epoch: 1) dtls/src/conn/mod.rs:1012 [TRACE] 16:32:08.100191 - Recv [handshake:client] -> Finished (epoch: 1, seq: 5) dtls/src/handshaker.rs:345 [TRACE] 16:32:08.100515 - [handshake:client] Flight 5 -> Flight 5 dtls/src/handshaker.rs:204 [TRACE] 16:32:08.100554 - [handshake:client] Flight 5: Finished dtls/src/conn/mod.rs:390 [TRACE] 16:32:08.100572 - Handshake Completed webrtc/src/peer_connection/mod.rs:900 [INFO] 16:32:08.101289 - peer connection state changed: connected Peer Connection State has changed: connected ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:08.237932 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:08.439902 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:08.642505 - [controlled]: checking keepalive webrtc/src/peer_connection/mod.rs:593 [DEBUG] 16:32:08.808368 - got new track: TrackRemote { id: Mutex(Mutex { data: "{846c12e5-7b73-40b0-9e37-0fd2151771b6}", poisoned: false, .. }), stream_id: Mutex(Mutex { data: "{d0f90903-9145-41eb-8a06-541bf0f709fa}", poisoned: false, .. }), payload_type: 120, kind: 2, ssrc: 3745956895, codec: Mutex(Mutex { data: RTCRtpCodecParameters { capability: RTCRtpCodecCapability { mime_type: "video/VP8", clock_rate: 90000, channels: 0, sdp_fmtp_line: "max-fs=12288;max-fr=60", rtcp_feedback: [RTCPFeedback { typ: "nack", parameter: "" }, RTCPFeedback { typ: "nack", parameter: "pli" }, RTCPFeedback { typ: "ccm", parameter: "fir" }, RTCPFeedback { typ: "goog-remb", parameter: "" }, RTCPFeedback { typ: "transport-cc", parameter: "" }] }, payload_type: 120, stats_id: "" }, poisoned: false, .. }), params: Mutex(Mutex { data: RTCRtpParameters { header_extensions: [RTCRtpHeaderExtensionParameters { uri: "http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01", id: 7 }], codecs: [RTCRtpCodecParameters { capability: RTCRtpCodecCapability { mime_type: "video/VP8", clock_rate: 90000, channels: 0, sdp_fmtp_line: "max-fs=12288;max-fr=60", rtcp_feedback: [RTCPFeedback { typ: "nack", parameter: "" }, RTCPFeedback { typ: "nack", parameter: "pli" }, RTCPFeedback { typ: "ccm", parameter: "fir" }, RTCPFeedback { typ: "goog-remb", parameter: "" }, RTCPFeedback { typ: "transport-cc", parameter: "" }] }, payload_type: 120, stats_id: "" }] }, poisoned: false, .. }), rid: "" } Curl an base64 SDP to start sendonly peer connection ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:08.844387 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:09.046543 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:09.248435 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:09.449975 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:09.652176 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:09.853871 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:10.056221 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:10.257763 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:10.458398 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:10.659495 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:10.860564 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:11.061757 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:11.263154 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:11.464816 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:11.666971 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:11.869531 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:12.071274 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:12.272856 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:12.475033 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:12.677284 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:12.878909 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:13.080577 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:13.281987 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:13.484165 - [controlled]: checking keepalive ice/src/agent/agent_internal.rs:961 [TRACE] 16:32:13.622232 - [controlled]: inbound STUN (Request) from 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_internal.rs:715 [TRACE] 16:32:13.622621 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_selector.rs:481 [TRACE] 16:32:13.624109 - inbound STUN (SuccessResponse) from udp4 host 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_selector.rs:490 [TRACE] 16:32:13.624197 - Found valid candidate pair: prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.22.160.1:60198 (remote, prio 2122187007) ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:13.685033 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:13.886782 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:14.088333 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:14.289747 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:14.490993 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:14.693224 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:14.895382 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:15.097307 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:15.298971 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:15.501398 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:15.703254 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:15.904423 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:16.105571 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:16.306865 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:16.509239 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:16.710392 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:16.911434 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:17.113141 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:17.314843 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:17.515820 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:17.716630 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:17.918331 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:18.119230 - [controlled]: checking keepalive ice/src/agent/agent_internal.rs:961 [TRACE] 16:32:18.196939 - [controlled]: inbound STUN (Request) from 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_internal.rs:715 [TRACE] 16:32:18.197182 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_selector.rs:481 [TRACE] 16:32:18.198089 - inbound STUN (SuccessResponse) from udp4 host 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_selector.rs:490 [TRACE] 16:32:18.198169 - Found valid candidate pair: prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.22.160.1:60198 (remote, prio 2122187007) ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:18.321004 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:18.522589 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:18.723854 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:18.925886 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:19.127802 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:19.328521 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:19.529938 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:19.732248 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:19.933593 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:20.135184 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:20.337195 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:20.538547 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:20.740075 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:20.941306 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:21.142825 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:21.344122 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:21.545518 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:21.746362 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:21.947666 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:22.149145 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:22.350826 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:22.553267 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:22.754790 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:22.956256 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:23.157236 - [controlled]: checking keepalive ice/src/agent/agent_internal.rs:961 [TRACE] 16:32:23.250191 - [controlled]: inbound STUN (Request) from 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_internal.rs:715 [TRACE] 16:32:23.250626 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_selector.rs:481 [TRACE] 16:32:23.251890 - inbound STUN (SuccessResponse) from udp4 host 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_selector.rs:490 [TRACE] 16:32:23.251988 - Found valid candidate pair: prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.22.160.1:60198 (remote, prio 2122187007) ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:23.358520 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:23.560102 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:23.761934 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:23.964311 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:24.166517 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:24.368216 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:24.569783 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:24.771196 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:24.972975 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:25.174521 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:25.375962 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:25.578871 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:25.780392 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:25.983120 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:26.184735 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:26.386073 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:26.587549 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:26.788593 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:26.990290 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:27.191642 - [controlled]: checking keepalive ice/src/agent/agent_internal.rs:961 [TRACE] 16:32:27.278780 - [controlled]: inbound STUN (Request) from 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_internal.rs:715 [TRACE] 16:32:27.279043 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_selector.rs:481 [TRACE] 16:32:27.280692 - inbound STUN (SuccessResponse) from udp4 host 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_selector.rs:490 [TRACE] 16:32:27.280755 - Found valid candidate pair: prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.22.160.1:60198 (remote, prio 2122187007) ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:27.393229 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:27.595101 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:27.796452 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:27.998188 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:28.199161 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:28.401464 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:28.603641 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:28.804999 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:29.006919 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:29.209720 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:29.412116 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:29.614077 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:29.815555 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:30.017330 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:30.218676 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:30.421239 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:30.622732 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:30.823718 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:31.025537 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:31.227204 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:31.428335 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:31.629669 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:31.832370 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:32.034819 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:32.236372 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:32.437521 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:32.639412 - [controlled]: checking keepalive ice/src/agent/agent_internal.rs:961 [TRACE] 16:32:32.708209 - [controlled]: inbound STUN (Request) from 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_internal.rs:715 [TRACE] 16:32:32.708480 - [controlled]: ping STUN from udp4 host 172.22.173.231:59093 to udp4 host 172.22.160.1:60198 ice/src/agent/agent_selector.rs:481 [TRACE] 16:32:32.709172 - inbound STUN (SuccessResponse) from udp4 host 172.22.160.1:60198 to udp4 host 172.22.173.231:59093 ice/src/agent/agent_selector.rs:490 [TRACE] 16:32:32.709240 - Found valid candidate pair: prio 9114723793200348927 (local, prio 2130706431) udp4 host 172.22.173.231:59093 <-> udp4 host 172.22.160.1:60198 (remote, prio 2122187007) ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:32.841047 - [controlled]: checking keepalive ice/src/agent/agent_selector.rs:420 [TRACE] 16:32:33.043230 - [controlled]: checking keepalive . . . ```

Unfortunately, I must also say that the results of the tests I repeated several times are not consistent. Sometimes the writing of the sdp string is extremely delayed and in this case the connection cannot be established and is closed. I actually experienced this a few times when my internet connection was extremely bad. From what I observed, this was happening more especially in WSL. However, even in an ideal connection situation, I couldn't get close to this with xiu. Despite my many efforts, I have not been able to create any successful streams yet. I am sorry that I did not fully understand the problem and therefore could not explain it. I will try to detect the problem by making a few changes to the xiu codes when I am free.

EnergoStalin commented 6 months ago

It was CORS problem in my case.

After adding this on 995f6eb39767a023695e1ea8f85241985432a312 it successfully connected. @harlanc ```diff diff --git a/protocol/webrtc/src/session/mod.rs b/protocol/webrtc/src/session/mod.rs index 4ddf14d..eb44d25 100644 --- a/protocol/webrtc/src/session/mod.rs +++ b/protocol/webrtc/src/session/mod.rs @@ -176,7 +176,9 @@ impl WebRTCServerSession { } } } - http_method_name::OPTIONS => {} + http_method_name::OPTIONS => { + self.send_response(&Self::gen_response(http::StatusCode::OK)).await? + } http_method_name::PATCH => {} http_method_name::DELETE => { if let Some(session_id) = pars_map.get("session_id") { @@ -473,12 +475,18 @@ impl WebRTCServerSession { "".to_string() }; - HttpResponse { + let mut response = HttpResponse { version: "HTTP/1.1".to_string(), status_code: status_code.as_u16(), reason_phrase, ..Default::default() - } + }; + + response.headers.insert("Access-Control-Allow-Origin".to_owned(), "*".to_owned()); + response.headers.insert("Access-Control-Allow-Headers".to_owned(), "content-type".to_owned()); + response.headers.insert("Access-Control-Allow-Method".to_owned(), "POST".to_owned()); + + return response } fn gen_file_response(file_path: &str) -> HttpResponse { ```

I wonder wether it should be handled by xiu or it should be put behind proxy.

But i still cant ingest stream through whep.js page no errors in logs tho.

Connect log from previous url with cors enabled and then try to ingest from whep page ```log [2023-12-24T17:41:34Z TRACE mio::poll] registering event source with poller: token=Token(1), interests=READABLE | WRITABLE [2023-12-24T17:41:34Z TRACE mio::poll] registering event source with poller: token=Token(0), interests=READABLE | WRITABLE [2023-12-24T17:41:34Z INFO rtmp::rtmp] Rtmp server listening on tcp://0.0.0.0:1935 [2023-12-24T17:41:34Z INFO xwebrtc::webrtc] WebRTC server listening on tcp://0.0.0.0:8889 [2023-12-24T17:41:34Z INFO xiu::api] Http api server listening on http://:8000 [2023-12-24T17:41:34Z TRACE mio::poll] registering event source with poller: token=Token(2), interests=READABLE | WRITABLE [2023-12-24T17:41:56Z TRACE mio::poll] registering event source with poller: token=Token(3), interests=READABLE | WRITABLE [2023-12-24T17:41:56Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame [2023-12-24T17:41:56Z TRACE tokio_util::codec::framed_impl] frame decoded from buffer [2023-12-24T17:41:56Z TRACE xwebrtc::http] len: 442 content: OPTIONS /whip?app=live&stream=test HTTP/1.1 Host: localhost:8889 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:120.0) Gecko/20100101 Firefox/120.0 Accept: */* Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate, br Access-Control-Request-Method: POST Access-Control-Request-Headers: content-type Origin: https://vdo.ninja Connection: keep-alive Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: cross-site [2023-12-24T17:41:56Z TRACE xwebrtc::http] header_end_idx is: 442 442 [2023-12-24T17:41:56Z INFO xwebrtc::session] 1:whip,2:live,3:test [2023-12-24T17:41:56Z TRACE tokio_util::codec::framed_impl] flushing framed transport [2023-12-24T17:41:56Z TRACE tokio_util::codec::framed_impl] writing; remaining=130 [2023-12-24T17:41:56Z TRACE tokio_util::codec::framed_impl] framed transport flushed [2023-12-24T17:41:56Z TRACE mio::poll] deregistering event source from poller [2023-12-24T17:41:56Z TRACE mio::poll] registering event source with poller: token=Token(16777219), interests=READABLE | WRITABLE [2023-12-24T17:41:56Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame [2023-12-24T17:41:56Z TRACE tokio_util::codec::framed_impl] frame decoded from buffer [2023-12-24T17:41:56Z TRACE xwebrtc::http] len: 3145 content: POST /whip?app=live&stream=test HTTP/1.1 Host: localhost:8889 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:120.0) Gecko/20100101 Firefox/120.0 Accept: */* Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate, br Content-Type: application/sdp Content-Length: 2736 Origin: https://vdo.ninja Connection: keep-alive Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: cross-site v=0 o=mozilla...THIS_IS_SDPARTA-99.0 962013811513855968 0 IN IP4 0.0.0.0 s=- t=0 0 a=sendonly a=fingerprint:sha-256 C2:82:8F:C8:5A:D6:6F:09:5C:0F:F3:7B:95:06:8B:19:52:56:AA:ED:04:E6:FD:EB:83:15:70:15:90:82:D0:BC a=group:BUNDLE 0 1 a=ice-options:trickle a=msid-semantic:WMS * m=audio 9 UDP/TLS/RTP/SAVPF 109 9 0 8 101 c=IN IP4 0.0.0.0 a=sendonly a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level a=extmap:2/recvonly urn:ietf:params:rtp-hdrext:csrc-audio-level a=extmap:3 urn:ietf:params:rtp-hdrext:sdes:mid a=fmtp:109 maxplaybackrate=48000;stereo=1;useinbandfec=1 a=fmtp:101 0-15 a=ice-pwd:54c616d7c32ae710dc5e3b375ec0c2f1 a=ice-ufrag:a468f56e a=mid:0 a=msid:{02ca88f6-cee4-4de5-86c8-c729bb6f8a93} {3f673770-c74c-4612-90da-8fc985d70b8e} a=rtcp-mux a=rtpmap:109 opus/48000/2 a=rtpmap:9 G722/8000/1 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 a=rtpmap:101 telephone-event/8000 a=setup:actpass a=ssrc:180355408 cname:{57b7f52c-ab2e-4907-b352-2b79f61bf79e} m=video 9 UDP/TLS/RTP/SAVPF 126 120 124 121 125 127 97 98 c=IN IP4 0.0.0.0 a=sendonly a=extmap:3 urn:ietf:params:rtp-hdrext:sdes:mid a=extmap:4 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time a=extmap:5 urn:ietf:params:rtp-hdrext:toffset a=extmap:6/recvonly http://www.webrtc.org/experiments/rtp-hdrext/playout-delay a=extmap:7 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01 a=fmtp:126 profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1 a=fmtp:97 profile-level-id=42e01f;level-asymmetry-allowed=1 a=fmtp:120 max-fs=12288;max-fr=60 a=fmtp:124 apt=120 a=fmtp:121 max-fs=12288;max-fr=60 a=fmtp:125 apt=121 a=fmtp:127 apt=126 a=fmtp:98 apt=97 a=ice-pwd:54c616d7c32ae710dc5e3b375ec0c2f1 a=ice-ufrag:a468f56e a=mid:1 a=msid:{573f6793-9779-4a6c-a02d-9a767413d4aa} {2f65bdcb-8453-441d-89bb-450b26a2d785} a=rtcp-fb:120 nack a=rtcp-fb:120 nack pli a=rtcp-fb:120 ccm fir a=rtcp-fb:120 goog-remb a=rtcp-fb:120 transport-cc a=rtcp-fb:121 nack a=rtcp-fb:121 nack pli a=rtcp-fb:121 ccm fir a=rtcp-fb:121 goog-remb a=rtcp-fb:121 transport-cc a=rtcp-fb:126 nack a=rtcp-fb:126 nack pli a=rtcp-fb:126 ccm fir a=rtcp-fb:126 goog-remb a=rtcp-fb:126 transport-cc a=rtcp-fb:97 nack a=rtcp-fb:97 nack pli a=rtcp-fb:97 ccm fir a=rtcp-fb:97 goog-remb a=rtcp-fb:97 transport-cc a=rtcp-mux a=rtcp-rsize a=rtpmap:120 VP8/90000 a=rtpmap:124 rtx/90000 a=rtpmap:121 VP9/90000 a=rtpmap:125 rtx/90000 a=rtpmap:126 H264/90000 a=rtpmap:127 rtx/90000 a=rtpmap:97 H264/90000 a=rtpmap:98 rtx/90000 a=setup:actpass a=ssrc:2921792732 cname:{57b7f52c-ab2e-4907-b352-2b79f61bf79e} a=ssrc:2789675362 cname:{57b7f52c-ab2e-4907-b352-2b79f61bf79e} a=ssrc-group:FID 2921792732 2789675362 [2023-12-24T17:41:56Z TRACE xwebrtc::http] header_end_idx is: 409 3145 [2023-12-24T17:41:56Z INFO xwebrtc::session] 1:whip,2:live,3:test [2023-12-24T17:41:56Z INFO streamhub] event data: {"Publish":{"identifier":{"WebRTC":{"app_name":"live","stream_name":"test"}},"info":{"id":"1703439716","sub_type":"PushWebRTC","notify_info":{"request_url":"","remote_addr":""}}}} [2023-12-24T17:41:56Z INFO streamhub] transmiter exits: idetifier: WebRTC - app_name: live, stream_name: test [2023-12-24T17:41:56Z INFO webrtc::peer_connection] signaling state changed to have-remote-offer [2023-12-24T17:41:56Z INFO webrtc_ice::mdns] mDNS is using 224.0.0.251:5353 as dest_addr [2023-12-24T17:41:56Z TRACE webrtc_mdns::conn] Connected to interface address 127.0.0.1:0 [2023-12-24T17:41:56Z TRACE webrtc_mdns::conn] Connected to interface address 192.168.2.147:0 [2023-12-24T17:41:56Z TRACE mio::poll] registering event source with poller: token=Token(4), interests=READABLE | WRITABLE [2023-12-24T17:41:56Z TRACE webrtc::peer_connection] start_transports: ice_role=controlled, dtls_role=auto [2023-12-24T17:41:56Z INFO webrtc_mdns::conn] Looping and listening Ok(224.0.0.251:5353) [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_internal] [controlled]: Set selected candidate pair: None [2023-12-24T17:41:56Z DEBUG webrtc_ice::agent::agent_internal] Started agent: isControlling? false, remoteUfrag: a468f56e, remotePwd: 54c616d7c32ae710dc5e3b375ec0c2f1 [2023-12-24T17:41:56Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Checking [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_internal] [controlled]: pinging all candidates [2023-12-24T17:41:56Z INFO webrtc::peer_connection] ICE connection state changed: checking [2023-12-24T17:41:56Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T17:41:56Z INFO xwebrtc::whip] Connection State has changed checking [2023-12-24T17:41:56Z INFO webrtc::peer_connection] signaling state changed to stable [2023-12-24T17:41:56Z TRACE webrtc::rtp_transceiver] Changing current direction of transceiver from Unspecified to recvonly [2023-12-24T17:41:56Z TRACE webrtc::rtp_transceiver] Processing transceiver(Some("0")) direction change from Unspecified to recvonly [2023-12-24T17:41:56Z TRACE webrtc::rtp_transceiver] Changing current direction of transceiver from Unspecified to recvonly [2023-12-24T17:41:56Z TRACE webrtc::rtp_transceiver] Processing transceiver(Some("1")) direction change from Unspecified to recvonly [2023-12-24T17:41:56Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp fe:80::: io error: Cannot assign requested address (os error 99) [2023-12-24T17:41:56Z TRACE mio::poll] registering event source with poller: token=Token(5), interests=READABLE | WRITABLE [2023-12-24T17:41:56Z TRACE mio::poll] registering event source with poller: token=Token(6), interests=READABLE | WRITABLE [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_internal] [controlled]: pinging all candidates [2023-12-24T17:41:56Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_internal] [controlled]: pinging all candidates [2023-12-24T17:41:56Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T17:41:56Z TRACE mio::poll] registering event source with poller: token=Token(7), interests=READABLE | WRITABLE [2023-12-24T17:41:56Z TRACE mio::poll] registering event source with poller: token=Token(8), interests=READABLE | WRITABLE [2023-12-24T17:41:56Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not get server reflexive address udp6 stun:stun.l.google.com:19302: io error: Network is unreachable (os error 101) [2023-12-24T17:41:56Z TRACE mio::poll] deregistering event source from poller [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_internal] [controlled]: pinging all candidates [2023-12-24T17:41:56Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T17:41:56Z TRACE webrtc::peer_connection] setGatherCompleteHandler [2023-12-24T17:41:56Z TRACE tokio_util::codec::framed_impl] flushing framed transport [2023-12-24T17:41:56Z TRACE tokio_util::codec::framed_impl] writing; remaining=2140 [2023-12-24T17:41:56Z TRACE tokio_util::codec::framed_impl] framed transport flushed [2023-12-24T17:41:56Z DEBUG webrtc_ice::agent::agent_internal] [controlled]: adding a new peer-reflexive candidate: 192.168.2.147:50396 [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_internal] [controlled]: inbound STUN (Request) from 192.168.2.147:50396 to udp4 host 192.168.2.147:33984 [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:33984 to udp4 prflx 192.168.2.147:50396 related :0 [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_internal] [controlled]: pinging all candidates [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:33984 to udp4 prflx 192.168.2.147:50396 related :0 [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 srflx 95.24.107.240:24975 related 0.0.0.0:57471 to udp4 prflx 192.168.2.147:50396 related :0 [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:50396 related :0 to udp4 host 192.168.2.147:33984 [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:33984 <-> udp4 prflx 192.168.2.147:50396 related :0 (remote, prio 1862270975) [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:50396 related :0 to udp4 host 192.168.2.147:33984 [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:33984 <-> udp4 prflx 192.168.2.147:50396 related :0 (remote, prio 1862270975) [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:50396 related :0 to udp4 srflx 95.24.107.240:24975 related 0.0.0.0:57471 [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7277816995565797376 (local, prio 1694498815) udp4 srflx 95.24.107.240:24975 related 0.0.0.0:57471 <-> udp4 prflx 192.168.2.147:50396 related :0 (remote, prio 1862270975) [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_internal] [controlled]: inbound STUN (Request) from 192.168.2.147:50396 to udp4 host 192.168.2.147:33984 [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_internal] [controlled]: Set selected candidate pair: Some(prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:33984 <-> udp4 prflx 192.168.2.147:50396 related :0 (remote, prio 1862270975)) [2023-12-24T17:41:56Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Connected [2023-12-24T17:41:56Z INFO webrtc::peer_connection] ICE connection state changed: connected [2023-12-24T17:41:56Z INFO xwebrtc::whip] Connection State has changed connected [2023-12-24T17:41:56Z INFO xwebrtc::whip] Ctrl+C the remote client to stop the demo [2023-12-24T17:41:56Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 1: Preparing [2023-12-24T17:41:56Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 1: Sending [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] Send [handshake:client] -> ClientHello (epoch: 0, seq: 0) [2023-12-24T17:41:56Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 1: Waiting [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] Recv [handshake:client] -> ServerHello (epoch: 0, seq: 0) [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] Recv [handshake:client] -> Certificate (epoch: 0, seq: 1) [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] Recv [handshake:client] -> ServerKeyExchange (epoch: 0, seq: 2) [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] Recv [handshake:client] -> CertificateRequest (epoch: 0, seq: 3) [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] Recv [handshake:client] -> ServerHelloDone (epoch: 0, seq: 4) [2023-12-24T17:41:56Z TRACE webrtc_dtls::flight::flight3] [handshake:client] use cipher suite: TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 [2023-12-24T17:41:56Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 1 -> Flight 5 [2023-12-24T17:41:56Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 5: Preparing [2023-12-24T17:41:56Z TRACE webrtc_dtls::crypto] Picked an algorithm ECDSA_P256_SHA256_ASN1 [2023-12-24T17:41:56Z TRACE webrtc_dtls::handshaker] [handshake:client] -> changeCipherSpec (epoch: 1) [2023-12-24T17:41:56Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 5: Sending [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] Send [handshake:client] -> Certificate (epoch: 0, seq: 1) [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] Send [handshake:client] -> ClientKeyExchange (epoch: 0, seq: 2) [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] Send [handshake:client] -> CertificateVerify (epoch: 0, seq: 3) [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] Send [handshake:client] -> Finished (epoch: 1, seq: 4) [2023-12-24T17:41:56Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 5: Waiting [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] client: <- ChangeCipherSpec (epoch: 1) [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] Recv [handshake:client] -> Finished (epoch: 1, seq: 5) [2023-12-24T17:41:56Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 5 -> Flight 5 [2023-12-24T17:41:56Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 5: Finished [2023-12-24T17:41:56Z TRACE webrtc_dtls::conn] Handshake Completed [2023-12-24T17:41:56Z INFO webrtc::peer_connection] peer connection state changed: connected [2023-12-24T17:41:56Z INFO xwebrtc::whip] Peer Connection State has changed: connected [2023-12-24T17:41:56Z DEBUG webrtc::peer_connection] got new track: TrackRemote { id: Mutex(Mutex { data: "{3f673770-c74c-4612-90da-8fc985d70b8e}", poisoned: false, .. }), stream_id: Mutex(Mutex { data: "{02ca88f6-cee4-4de5-86c8-c729bb6f8a93}", poisoned: false, .. }), payload_type: 109, kind: 1, ssrc: 180355408, codec: Mutex(Mutex { data: RTCRtpCodecParameters { capability: RTCRtpCodecCapability { mime_type: "audio/opus", clock_rate: 48000, channels: 2, sdp_fmtp_line: "maxplaybackrate=48000;stereo=1;useinbandfec=1", rtcp_feedback: [] }, payload_type: 109, stats_id: "" }, poisoned: false, .. }), params: Mutex(Mutex { data: RTCRtpParameters { header_extensions: [], codecs: [RTCRtpCodecParameters { capability: RTCRtpCodecCapability { mime_type: "audio/opus", clock_rate: 48000, channels: 2, sdp_fmtp_line: "maxplaybackrate=48000;stereo=1;useinbandfec=1", rtcp_feedback: [] }, payload_type: 109, stats_id: "" }] }, poisoned: false, .. }), rid: "" } [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:56Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:57Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:57Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:57Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:57Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:57Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:58Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:58Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:58Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:58Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:58Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:59Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:59Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:59Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:59Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:41:59Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:00Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:00Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:00Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:00Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:00Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:01Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:01Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:01Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:01Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:01Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:02Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:02Z TRACE webrtc_ice::agent::agent_internal] [controlled]: inbound STUN (Request) from 192.168.2.147:50396 to udp4 host 192.168.2.147:33984 [2023-12-24T17:42:02Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:33984 to udp4 prflx 192.168.2.147:50396 related :0 [2023-12-24T17:42:02Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:50396 related :0 to udp4 host 192.168.2.147:33984 [2023-12-24T17:42:02Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:33984 <-> udp4 prflx 192.168.2.147:50396 related :0 (remote, prio 1862270975) [2023-12-24T17:42:02Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:02Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:02Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:02Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:03Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:03Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:03Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:03Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:03Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:04Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:04Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:04Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:04Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:04Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:05Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:05Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:05Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:05Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:05Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:06Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:06Z TRACE webrtc_ice::agent::agent_internal] [controlled]: inbound STUN (Request) from 192.168.2.147:50396 to udp4 host 192.168.2.147:33984 [2023-12-24T17:42:06Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:33984 to udp4 prflx 192.168.2.147:50396 related :0 [2023-12-24T17:42:06Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:50396 related :0 to udp4 host 192.168.2.147:33984 [2023-12-24T17:42:06Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:33984 <-> udp4 prflx 192.168.2.147:50396 related :0 (remote, prio 1862270975) [2023-12-24T17:42:06Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:06Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:06Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:06Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:07Z TRACE mio::poll] registering event source with poller: token=Token(16777224), interests=READABLE | WRITABLE [2023-12-24T17:42:07Z TRACE tokio_util::codec::framed_impl] attempting to decode a frame [2023-12-24T17:42:07Z TRACE tokio_util::codec::framed_impl] frame decoded from buffer [2023-12-24T17:42:07Z TRACE xwebrtc::http] len: 3100 content: POST /whep?app=live&stream=test HTTP/1.1 Host: localhost:8889 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:120.0) Gecko/20100101 Firefox/120.0 Accept: */* Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate, br Referer: http://localhost:8889/ Content-Type: application/sdp Content-Length: 2653 Origin: http://localhost:8889 Connection: keep-alive Sec-Fetch-Dest: empty Sec-Fetch-Mode: cors Sec-Fetch-Site: same-origin v=0 o=mozilla...THIS_IS_SDPARTA-99.0 962992878356353057 0 IN IP4 0.0.0.0 s=- t=0 0 a=fingerprint:sha-256 8D:6F:A5:9F:A3:48:E2:69:F4:0D:FA:91:84:71:C4:6F:CD:BE:4F:AA:7F:58:F2:8C:59:8D:63:33:8A:B9:B7:73 a=group:BUNDLE 0 1 a=ice-options:trickle a=msid-semantic:WMS * m=audio 9 UDP/TLS/RTP/SAVPF 109 9 0 8 101 c=IN IP4 0.0.0.0 a=sendrecv a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level a=extmap:2/recvonly urn:ietf:params:rtp-hdrext:csrc-audio-level a=extmap:3 urn:ietf:params:rtp-hdrext:sdes:mid a=fmtp:109 maxplaybackrate=48000;stereo=1;useinbandfec=1 a=fmtp:101 0-15 a=ice-pwd:d57ac7c17d8569ffbe72765f6a10c4ea a=ice-ufrag:051a0791 a=mid:0 a=msid:- {92c6ff51-3601-453c-9906-d9096dc23caf} a=rtcp-mux a=rtpmap:109 opus/48000/2 a=rtpmap:9 G722/8000/1 a=rtpmap:0 PCMU/8000 a=rtpmap:8 PCMA/8000 a=rtpmap:101 telephone-event/8000/1 a=setup:actpass a=ssrc:4281947584 cname:{26e8345b-c454-4946-8301-919a53b7c0e2} m=video 9 UDP/TLS/RTP/SAVPF 120 124 121 125 126 127 97 98 c=IN IP4 0.0.0.0 a=sendrecv a=extmap:3 urn:ietf:params:rtp-hdrext:sdes:mid a=extmap:4 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time a=extmap:5 urn:ietf:params:rtp-hdrext:toffset a=extmap:6/recvonly http://www.webrtc.org/experiments/rtp-hdrext/playout-delay a=extmap:7 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01 a=fmtp:126 profile-level-id=42e01f;level-asymmetry-allowed=1;packetization-mode=1 a=fmtp:97 profile-level-id=42e01f;level-asymmetry-allowed=1 a=fmtp:120 max-fs=12288;max-fr=60 a=fmtp:124 apt=120 a=fmtp:121 max-fs=12288;max-fr=60 a=fmtp:125 apt=121 a=fmtp:127 apt=126 a=fmtp:98 apt=97 a=ice-pwd:d57ac7c17d8569ffbe72765f6a10c4ea a=ice-ufrag:051a0791 a=mid:1 a=msid:- {5dda5814-f747-41fd-8527-77201cfa1fc9} a=rtcp-fb:120 nack a=rtcp-fb:120 nack pli a=rtcp-fb:120 ccm fir a=rtcp-fb:120 goog-remb a=rtcp-fb:120 transport-cc a=rtcp-fb:121 nack a=rtcp-fb:121 nack pli a=rtcp-fb:121 ccm fir a=rtcp-fb:121 goog-remb a=rtcp-fb:121 transport-cc a=rtcp-fb:126 nack a=rtcp-fb:126 nack pli a=rtcp-fb:126 ccm fir a=rtcp-fb:126 goog-remb a=rtcp-fb:126 transport-cc a=rtcp-fb:97 nack a=rtcp-fb:97 nack pli a=rtcp-fb:97 ccm fir a=rtcp-fb:97 goog-remb a=rtcp-fb:97 transport-cc a=rtcp-mux a=rtcp-rsize a=rtpmap:120 VP8/90000 a=rtpmap:124 rtx/90000 a=rtpmap:121 VP9/90000 a=rtpmap:125 rtx/90000 a=rtpmap:126 H264/90000 a=rtpmap:127 rtx/90000 a=rtpmap:97 H264/90000 a=rtpmap:98 rtx/90000 a=setup:actpass a=ssrc:3061904870 cname:{26e8345b-c454-4946-8301-919a53b7c0e2} a=ssrc:2771003599 cname:{26e8345b-c454-4946-8301-919a53b7c0e2} a=ssrc-group:FID 3061904870 2771003599 [2023-12-24T17:42:07Z TRACE xwebrtc::http] header_end_idx is: 447 3100 [2023-12-24T17:42:07Z INFO xwebrtc::session] 1:whep,2:live,3:test [2023-12-24T17:42:07Z INFO streamhub] event data: {"Subscribe":{"identifier":{"WebRTC":{"app_name":"live","stream_name":"test"}},"info":{"id":"1703439727","sub_type":"PlayerWebrtc","notify_info":{"request_url":"","remote_addr":""}}}} [2023-12-24T17:42:07Z INFO streamhub] subscribe: stream identifier: WebRTC - app_name: live, stream_name: test [2023-12-24T17:42:07Z INFO webrtc::peer_connection] signaling state changed to have-remote-offer [2023-12-24T17:42:07Z INFO webrtc_ice::mdns] mDNS is using 224.0.0.251:5353 as dest_addr [2023-12-24T17:42:07Z TRACE webrtc_mdns::conn] Connected to interface address 127.0.0.1:0 [2023-12-24T17:42:07Z TRACE webrtc_mdns::conn] Connected to interface address 192.168.2.147:0 [2023-12-24T17:42:07Z TRACE mio::poll] registering event source with poller: token=Token(9), interests=READABLE | WRITABLE [2023-12-24T17:42:07Z TRACE webrtc::peer_connection] start_transports: ice_role=controlled, dtls_role=auto [2023-12-24T17:42:07Z INFO webrtc_mdns::conn] Looping and listening Ok(224.0.0.251:5353) [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_internal] [controlled]: Set selected candidate pair: None [2023-12-24T17:42:07Z DEBUG webrtc_ice::agent::agent_internal] Started agent: isControlling? false, remoteUfrag: 051a0791, remotePwd: d57ac7c17d8569ffbe72765f6a10c4ea [2023-12-24T17:42:07Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Checking [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_internal] [controlled]: pinging all candidates [2023-12-24T17:42:07Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T17:42:07Z INFO webrtc::peer_connection] ICE connection state changed: checking [2023-12-24T17:42:07Z INFO xwebrtc::whep] Connection State has changed checking [2023-12-24T17:42:07Z INFO webrtc::peer_connection] signaling state changed to stable [2023-12-24T17:42:07Z TRACE webrtc::rtp_transceiver] Changing current direction of transceiver from Unspecified to sendrecv [2023-12-24T17:42:07Z TRACE webrtc::rtp_transceiver] Processing transceiver(Some("0")) direction change from Unspecified to sendrecv [2023-12-24T17:42:07Z TRACE webrtc::rtp_transceiver] Changing current direction of transceiver from Unspecified to sendrecv [2023-12-24T17:42:07Z TRACE webrtc::rtp_transceiver] Processing transceiver(Some("1")) direction change from Unspecified to sendrecv [2023-12-24T17:42:07Z TRACE mio::poll] registering event source with poller: token=Token(10), interests=READABLE | WRITABLE [2023-12-24T17:42:07Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not listen udp fe:80::: io error: Cannot assign requested address (os error 99) [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_internal] [controlled]: pinging all candidates [2023-12-24T17:42:07Z TRACE mio::poll] registering event source with poller: token=Token(11), interests=READABLE | WRITABLE [2023-12-24T17:42:07Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_internal] [controlled]: pinging all candidates [2023-12-24T17:42:07Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T17:42:07Z TRACE mio::poll] registering event source with poller: token=Token(12), interests=READABLE | WRITABLE [2023-12-24T17:42:07Z WARN webrtc_ice::agent::agent_gather] [controlled]: could not get server reflexive address udp6 stun:stun.l.google.com:19302: io error: Network is unreachable (os error 101) [2023-12-24T17:42:07Z TRACE mio::poll] deregistering event source from poller [2023-12-24T17:42:07Z TRACE mio::poll] registering event source with poller: token=Token(16777228), interests=READABLE | WRITABLE [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_internal] [controlled]: pinging all candidates [2023-12-24T17:42:07Z WARN webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet. [2023-12-24T17:42:07Z TRACE webrtc::peer_connection] setGatherCompleteHandler [2023-12-24T17:42:07Z INFO xwebrtc::session] before whep 1 [2023-12-24T17:42:07Z TRACE tokio_util::codec::framed_impl] flushing framed transport [2023-12-24T17:42:07Z TRACE tokio_util::codec::framed_impl] writing; remaining=2470 [2023-12-24T17:42:07Z TRACE tokio_util::codec::framed_impl] framed transport flushed [2023-12-24T17:42:07Z DEBUG webrtc_ice::agent::agent_internal] [controlled]: adding a new peer-reflexive candidate: 192.168.2.147:48764 [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_internal] [controlled]: inbound STUN (Request) from 192.168.2.147:48764 to udp4 host 192.168.2.147:38467 [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:38467 to udp4 prflx 192.168.2.147:48764 related :0 [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_internal] [controlled]: pinging all candidates [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:38467 to udp4 prflx 192.168.2.147:48764 related :0 [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 srflx 95.24.107.240:24098 related 0.0.0.0:55224 to udp4 prflx 192.168.2.147:48764 related :0 [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:48764 related :0 to udp4 host 192.168.2.147:38467 [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:38467 <-> udp4 prflx 192.168.2.147:48764 related :0 (remote, prio 1862270975) [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:48764 related :0 to udp4 host 192.168.2.147:38467 [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:38467 <-> udp4 prflx 192.168.2.147:48764 related :0 (remote, prio 1862270975) [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:48764 related :0 to udp4 srflx 95.24.107.240:24098 related 0.0.0.0:55224 [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7277816995565797376 (local, prio 1694498815) udp4 srflx 95.24.107.240:24098 related 0.0.0.0:55224 <-> udp4 prflx 192.168.2.147:48764 related :0 (remote, prio 1862270975) [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_internal] [controlled]: inbound STUN (Request) from 192.168.2.147:48764 to udp4 host 192.168.2.147:38467 [2023-12-24T17:42:07Z TRACE webrtc_ice::agent::agent_internal] [controlled]: Set selected candidate pair: Some(prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:38467 <-> udp4 prflx 192.168.2.147:48764 related :0 (remote, prio 1862270975)) [2023-12-24T17:42:07Z INFO webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Connected [2023-12-24T17:42:07Z INFO webrtc::peer_connection] ICE connection state changed: connected [2023-12-24T17:42:07Z INFO xwebrtc::whep] Connection State has changed connected [2023-12-24T17:42:07Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 1: Preparing [2023-12-24T17:42:07Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 1: Sending [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] Send [handshake:client] -> ClientHello (epoch: 0, seq: 0) [2023-12-24T17:42:07Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 1: Waiting [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] Recv [handshake:client] -> ServerHello (epoch: 0, seq: 0) [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] Recv [handshake:client] -> Certificate (epoch: 0, seq: 1) [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] Recv [handshake:client] -> ServerKeyExchange (epoch: 0, seq: 2) [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] Recv [handshake:client] -> CertificateRequest (epoch: 0, seq: 3) [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] Recv [handshake:client] -> ServerHelloDone (epoch: 0, seq: 4) [2023-12-24T17:42:07Z TRACE webrtc_dtls::flight::flight3] [handshake:client] use cipher suite: TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 [2023-12-24T17:42:07Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 1 -> Flight 5 [2023-12-24T17:42:07Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 5: Preparing [2023-12-24T17:42:07Z TRACE webrtc_dtls::crypto] Picked an algorithm ECDSA_P256_SHA256_ASN1 [2023-12-24T17:42:07Z TRACE webrtc_dtls::handshaker] [handshake:client] -> changeCipherSpec (epoch: 1) [2023-12-24T17:42:07Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 5: Sending [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] Send [handshake:client] -> Certificate (epoch: 0, seq: 1) [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] Send [handshake:client] -> ClientKeyExchange (epoch: 0, seq: 2) [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] Send [handshake:client] -> CertificateVerify (epoch: 0, seq: 3) [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] Send [handshake:client] -> Finished (epoch: 1, seq: 4) [2023-12-24T17:42:07Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 5: Waiting [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] client: <- ChangeCipherSpec (epoch: 1) [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] Recv [handshake:client] -> Finished (epoch: 1, seq: 5) [2023-12-24T17:42:07Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 5 -> Flight 5 [2023-12-24T17:42:07Z TRACE webrtc_dtls::handshaker] [handshake:client] Flight 5: Finished [2023-12-24T17:42:07Z TRACE webrtc_dtls::conn] Handshake Completed [2023-12-24T17:42:07Z INFO webrtc::peer_connection] peer connection state changed: connected [2023-12-24T17:42:07Z INFO xwebrtc::whep] Peer Connection State has changed: connected [2023-12-24T17:42:07Z INFO xwebrtc::session] state: connected [2023-12-24T17:42:08Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:08Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:08Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:08Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:08Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:08Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:08Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:08Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:08Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:08Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:09Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:09Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:09Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:09Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:09Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:09Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:09Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:09Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:09Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:09Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:38467 to udp4 prflx 192.168.2.147:48764 related :0 [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:48764 related :0 to udp4 host 192.168.2.147:38467 [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:38467 <-> udp4 prflx 192.168.2.147:48764 related :0 (remote, prio 1862270975) [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_internal] [controlled]: inbound STUN (Request) from 192.168.2.147:50396 to udp4 host 192.168.2.147:33984 [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:33984 to udp4 prflx 192.168.2.147:50396 related :0 [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:50396 related :0 to udp4 host 192.168.2.147:33984 [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:33984 <-> udp4 prflx 192.168.2.147:50396 related :0 (remote, prio 1862270975) [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:10Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:11Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:11Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:11Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:11Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:11Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:11Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:11Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:11Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:11Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:11Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_internal] [controlled]: inbound STUN (Request) from 192.168.2.147:48764 to udp4 host 192.168.2.147:38467 [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:38467 to udp4 prflx 192.168.2.147:48764 related :0 [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:48764 related :0 to udp4 host 192.168.2.147:38467 [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:38467 <-> udp4 prflx 192.168.2.147:48764 related :0 (remote, prio 1862270975) [2023-12-24T17:42:12Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:13Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:13Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:13Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:13Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:13Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:13Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:13Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:13Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:13Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:13Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:38467 to udp4 prflx 192.168.2.147:48764 related :0 [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:48764 related :0 to udp4 host 192.168.2.147:38467 [2023-12-24T17:42:14Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:38467 <-> udp4 prflx 192.168.2.147:48764 related :0 (remote, prio 1862270975) [2023-12-24T17:42:15Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:15Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:15Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:15Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:15Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:15Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:15Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:15Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:15Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:15Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_internal] [controlled]: inbound STUN (Request) from 192.168.2.147:50396 to udp4 host 192.168.2.147:33984 [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:33984 to udp4 prflx 192.168.2.147:50396 related :0 [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:50396 related :0 to udp4 host 192.168.2.147:33984 [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:33984 <-> udp4 prflx 192.168.2.147:50396 related :0 (remote, prio 1862270975) [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:16Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:38467 to udp4 prflx 192.168.2.147:48764 related :0 [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:48764 related :0 to udp4 host 192.168.2.147:38467 [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:38467 <-> udp4 prflx 192.168.2.147:48764 related :0 (remote, prio 1862270975) [2023-12-24T17:42:17Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_internal] [controlled]: inbound STUN (Request) from 192.168.2.147:48764 to udp4 host 192.168.2.147:38467 [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:38467 to udp4 prflx 192.168.2.147:48764 related :0 [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:48764 related :0 to udp4 host 192.168.2.147:38467 [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:38467 <-> udp4 prflx 192.168.2.147:48764 related :0 (remote, prio 1862270975) [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:18Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:19Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:19Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:19Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:19Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:19Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:19Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:19Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:19Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:19Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:19Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:20Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:20Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:20Z TRACE webrtc_ice::agent::agent_selector] [controlled]: checking keepalive [2023-12-24T17:42:20Z TRACE webrtc_ice::agent::agent_internal] [controlled]: ping STUN from udp4 host 192.168.2.147:38467 to udp4 prflx 192.168.2.147:48764 related :0 [2023-12-24T17:42:20Z TRACE webrtc_ice::agent::agent_selector] inbound STUN (SuccessResponse) from udp4 prflx 192.168.2.147:48764 related :0 to udp4 host 192.168.2.147:38467 [2023-12-24T17:42:20Z TRACE webrtc_ice::agent::agent_selector] Found valid candidate pair: prio 7998392936314175487 (local, prio 2130706431) udp4 host 192.168.2.147:38467 <-> udp4 prflx 192.168.2.147:48764 related :0 (remote, prio 1862270975) ```

Can see only black screen on whep page despide having successful screenshare in VDO ninja. Now i'm unsure what's wrong again.

harlanc commented 6 months ago

Finally, I created an ubuntu@22.04.3-desktop virtual machine with hyperv and ran a few tests using obs@30.0.2 on windows.

xiu logs: As soon as I saw the connection error box in obs, I tried to start the stream again and the beginning of the second request was separated by ----.

[2023-12-24T12:20:50Z INFO  xwebrtc::webrtc] WebRTC server listening on tcp://0.0.0.0:8900
[2023-12-24T12:20:50Z INFO  xiu::api] Http api server listening on http://:8080
[2023-12-24T12:20:50Z INFO  rtmp::rtmp] Rtmp server listening on tcp://0.0.0.0:1935
[2023-12-24T12:22:08Z INFO  xwebrtc::session] 1:whip,2:live,3:test
[2023-12-24T12:22:08Z INFO  streamhub] event data: {"Publish":{"identifier":{"WebRTC":{"app_name":"live","stream_name":"test"}},"info":{"id":"1703420528","sub_type":"PushWebRTC","notify_info":{"request_url":"","remote_addr":""}}}}
[2023-12-24T12:22:08Z INFO  streamhub] transmiter exits: idetifier: WebRTC - app_name: live, stream_name: test
[2023-12-24T12:22:08Z INFO  webrtc::peer_connection] signaling state changed to have-remote-offer
[2023-12-24T12:22:08Z INFO  webrtc_ice::mdns] mDNS is using 224.0.0.251:5353 as dest_addr
[2023-12-24T12:22:08Z INFO  webrtc_mdns::conn] Looping and listening Ok(224.0.0.251:5353)
[2023-12-24T12:22:08Z INFO  webrtc::peer_connection] signaling state changed to stable
[2023-12-24T12:22:08Z WARN  webrtc_ice::agent::agent_gather] [controlled]: could not listen udp fe:80::: io error: Cannot assign requested address (os error 99)
[2023-12-24T12:22:08Z DEBUG webrtc_ice::agent::agent_internal] Started agent: isControlling? false, remoteUfrag: sD70, remotePwd: eQ0h4oftbfmBy0HMr8Lc4E
[2023-12-24T12:22:08Z INFO  webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Checking
[2023-12-24T12:22:08Z INFO  webrtc::peer_connection] ICE connection state changed: checking
[2023-12-24T12:22:08Z INFO  xwebrtc::whip] Connection State has changed checking
[2023-12-24T12:22:08Z WARN  webrtc_ice::agent::agent_gather] [controlled]: could not get server reflexive address udp6 stun:stun.l.google.com:19302: io error: Network is unreachable (os error 101)
[2023-12-24T12:22:38Z WARN  webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.21.128.1:53403: the agent is closed
[2023-12-24T12:22:38Z WARN  webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.22.160.1:53403: the agent is closed
[2023-12-24T12:22:38Z WARN  webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 192.168.124.30:53403: the agent is closed
[2023-12-24T12:22:38Z WARN  webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.31.16.1:53403: the agent is closed
[2023-12-24T12:22:38Z WARN  webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.22.192.1:53403: the agent is closed
[2023-12-24T12:22:38Z INFO  webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Failed
[2023-12-24T12:22:38Z INFO  webrtc::peer_connection] ICE connection state changed: failed
[2023-12-24T12:22:38Z INFO  xwebrtc::whip] Connection State has changed failed
[2023-12-24T12:22:38Z INFO  webrtc::peer_connection] peer connection state changed: failed
[2023-12-24T12:22:38Z INFO  xwebrtc::whip] Peer Connection State has changed: failed
Peer Connection has gone to failed exiting: Done forwarding

---- SECOND TRY ----

[2023-12-24T12:23:12Z INFO  xwebrtc::session] 1:whip,2:live,3:test
[2023-12-24T12:23:12Z INFO  streamhub] event data: {"Publish":{"identifier":{"WebRTC":{"app_name":"live","stream_name":"test"}},"info":{"id":"1703420592","sub_type":"PushWebRTC","notify_info":{"request_url":"","remote_addr":""}}}}
[2023-12-24T12:23:12Z ERROR streamhub] event_loop Publish err: exists
[2023-12-24T12:23:12Z INFO  webrtc::peer_connection] signaling state changed to have-remote-offer
[2023-12-24T12:23:12Z INFO  webrtc_ice::mdns] mDNS is using 224.0.0.251:5353 as dest_addr
[2023-12-24T12:23:12Z INFO  webrtc_mdns::conn] Looping and listening Ok(224.0.0.251:5353)
[2023-12-24T12:23:12Z INFO  webrtc::peer_connection] signaling state changed to stable
[2023-12-24T12:23:12Z DEBUG webrtc_ice::agent::agent_internal] Started agent: isControlling? false, remoteUfrag: 4UQV, remotePwd: 3FWJxdcdXnu/pXS0kQgbdp
[2023-12-24T12:23:12Z INFO  webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Checking
[2023-12-24T12:23:12Z WARN  webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet.
[2023-12-24T12:23:12Z WARN  webrtc_ice::agent::agent_internal] [controlled]: pingAllCandidates called with no candidate pairs. Connection is not possible yet.
[2023-12-24T12:23:12Z INFO  webrtc::peer_connection] ICE connection state changed: checking
[2023-12-24T12:23:12Z INFO  xwebrtc::whip] Connection State has changed checking
[2023-12-24T12:23:12Z WARN  webrtc_ice::agent::agent_gather] [controlled]: could not listen udp fe:80::: io error: Cannot assign requested address (os error 99)
[2023-12-24T12:23:12Z WARN  webrtc_ice::agent::agent_gather] [controlled]: could not get server reflexive address udp6 stun:stun.l.google.com:19302: io error: Network is unreachable (os error 101)
[2023-12-24T12:23:42Z WARN  webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.21.128.1:57332: the agent is closed
[2023-12-24T12:23:42Z WARN  webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.22.160.1:57332: the agent is closed
[2023-12-24T12:23:42Z WARN  webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 192.168.124.30:57332: the agent is closed
[2023-12-24T12:23:42Z WARN  webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.31.16.1:57332: the agent is closed
[2023-12-24T12:23:42Z WARN  webrtc_ice::agent::agent_internal] [controlled]: Failed to close candidate udp4 host 172.22.192.1:57332: the agent is closed
[2023-12-24T12:23:42Z INFO  webrtc_ice::agent::agent_internal] [controlled]: Setting new connection state: Failed
[2023-12-24T12:23:42Z INFO  webrtc::peer_connection] ICE connection state changed: failed
[2023-12-24T12:23:42Z INFO  xwebrtc::whip] Connection State has changed failed
[2023-12-24T12:23:42Z INFO  webrtc::peer_connection] peer connection state changed: failed
[2023-12-24T12:23:42Z INFO  xwebrtc::whip] Peer Connection State has changed: failed
Peer Connection has gone to failed exiting: Done forwarding

OBS logs (only the relevant part):

15:21:50.666: ---------------------------------
15:21:50.666: [x264 encoder: 'simple_video_stream'] preset: veryfast
15:21:50.667: [x264 encoder: 'simple_video_stream'] settings:
15:21:50.667:     rate_control: CBR
15:21:50.667:     bitrate:      2500
15:21:50.667:     buffer size:  2500
15:21:50.667:     crf:          23
15:21:50.667:     fps_num:      30
15:21:50.667:     fps_den:      1
15:21:50.667:     width:        1092
15:21:50.667:     height:       614
15:21:50.667:     keyint:       250
15:21:50.667: 
15:21:50.678: ---------------------------------
15:21:50.678: [FFmpeg libopus encoder: 'simple_opus'] bitrate: 160, channels: 2, channel_layout: stereo
15:21:50.678: 
15:21:50.701: [obs-webrtc] [whip_output: 'simple_stream'] PeerConnection state is now: Connecting
15:21:52.941: [obs-webrtc] [whip_output: 'simple_stream'] Connect failed: CURL returned result not CURLE_OK
15:21:52.942: [obs-webrtc] [whip_output: 'simple_stream'] PeerConnection state is now: Closed
15:21:52.942: ==== Streaming Stop ================================================
15:22:06.361: Settings changed (stream 1)
15:22:06.361: ------------------------------------------------
15:22:07.463: [obs-webrtc] [whip_output: 'simple_stream'] PeerConnection state is now: Connecting
15:22:15.467: [obs-webrtc] [whip_output: 'simple_stream'] Connect failed: CURL returned result not CURLE_OK
15:22:15.467: [obs-webrtc] [whip_output: 'simple_stream'] PeerConnection state is now: Closed
15:22:15.467: ==== Streaming Stop ================================================
15:23:11.425: [obs-webrtc] [whip_output: 'simple_stream'] PeerConnection state is now: Connecting
15:23:19.427: [obs-webrtc] [whip_output: 'simple_stream'] Connect failed: CURL returned result not CURLE_OK
15:23:19.427: [obs-webrtc] [whip_output: 'simple_stream'] PeerConnection state is now: Closed
15:23:19.427: ==== Streaming Stop ================================================

Again, it seems that the stream cannot be started when WHIP used. Then, I'm trying to start a stream using RTMP to test WHEP.

xiu logs: _~There seems to be a minor problem with RTMP (When we do rtmp://ip:port/appname/streamname, stream_name appears empty and all parameters are set to app_name.),~ I noticed that streamname is taken from stream key. but WHEP is definitely not working at all. Additionally, I tried to connect to STUN servers separately and there were no problems.

@ikircik This project does not currently support the conversion from RTMP to WHEP because audio needs to be decoded and encoded (like AAC to Opus), making it less easy to implement in pure rust.

harlanc commented 6 months ago

@EnergoStalin Have you tried OBS? I tried using vdo and found that it requires HTTPS. I'm wondering how you managed to successfully stream through WHIP.

EnergoStalin commented 6 months ago

I omit s directly from url and it connected despite it forcibly adding https from ui flow as i can see by xiu logs and no error from vdo and whep inspection page.

VDO ninja simply say's whip out failed. Used url.

Share url what i initially referred also don't have https(manually removed) so i don't think it's required but i didn't read docs related to that so cant say for sure.

No i didn't tried obs cause there's no such option in my version of obs which is 30.0.2-1 from arch extra distribution it's indeed strange but i don't have browser capture either in this build.

I think i found a different solution for what i'm trying to solve. It's more complex but since xiu cant convert whip to rtmp for now because of reincoding anyway. I should stick to obs websocket api in automating my task stopping trying to use whip in favor of browser source to stream it to youtube via rtmp.

VanderBieu commented 6 months ago

Latest code have already solved this issue so I closed this post.

harlanc commented 5 months ago

It seems that whip2rtmp can be implemented using the following two RUST crates :

fdk-aac = "0.5.0"
opus = "0.3.0"
harlanc commented 5 months ago

The conversion from whip to RTMP/HTTP-FLV/HLS is basically finished,I have conducted some testing using OBS , anyone who interests with the feature can help test and give me some feedback when founding problems , thanks.

git checkout origin/webrtc2rtmp -b webrtc2rtmp
cargo build && cd target/debug
./xiu -r 1935 -w 8900 -f 8081