Guidance on Server's Preferred Address Migration for picoquic #1955
-
|
Dear Admins, I am a relatively new user of both QUIC and picoquic. Based on RFC 9000 Section 9.6, there is a possible migration on the server side to migrate the whole connection into the server's preferred address. Could someone direct me to either a working example or a quick demo for picoquic's SPA migration? Best, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
|
Picoquic does support the "preferred address" transport parameter. On the server side, this is activated by setting the values of the transport parameter "preferred_address" in the structure "picoquic_tp_t". You can find an example in the function |
Beta Was this translation helpful? Give feedback.
-
|
Sorry, there is no example for the server code outside of the test suite. |
Beta Was this translation helpful? Give feedback.
Picoquic does support the "preferred address" transport parameter.
On the server side, this is activated by setting the values of the transport parameter "preferred_address" in the structure "picoquic_tp_t". You can find an example in the function
preferred_address_test_oneinpicoquictest/tls_api_test.c.