Replies: 1 comment 5 replies
-
Can you collect a qlog so we can see what is happening? Also, are you sending new pings after the path comes back? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have a single path connection, where ping packets are sent from client to server in datagram mode.
The idle timeout is set to 0.
When the wired connection between client and server is cut, the callback event
picoquic_callback_datagram_lost
is triggered on client-side and after about 2 seconds there ispicoquic_callback_path_suspended
.Now, when I restore the wired connection, I would expect to see
picoquic_callback_path_available
(after some time), but nothing happens.Wireshark also doesn't show any packet being sent to the server.
How can a suspended path be re-activated?
Note, the path is restored and ping continues if the wired connection is fixed within these about 2 seconds.
Beta Was this translation helpful? Give feedback.
All reactions