cloudflared-mirror/quic/v3
Devin Carr 952622a965 TUN-8709: Add session migration for datagram v3
When a registration response from cloudflared gets lost on it's way back to the edge, the edge service will retry and send another registration request. Since cloudflared already has bound the local UDP socket for the provided request id, we want to re-send the registration response.

There are three types of retries that the edge will send:

1. A retry from the same QUIC connection index; cloudflared will just respond back with a registration response and reset the idle timer for the session.
2. A retry from a different QUIC connection index; cloudflared will need to migrate the current session connection to this new QUIC connection and reset the idle timer for the session.
3. A retry to a different cloudflared connector; cloudflared will eventually time the session out since no further packets will arrive to the session at the original connector.

Closes TUN-8709
2024-11-06 12:06:07 -08:00
..
datagram.go TUN-8709: Add session migration for datagram v3 2024-11-06 12:06:07 -08:00
datagram_errors.go TUN-8700: Add datagram v3 muxer 2024-11-04 11:20:35 -08:00
datagram_test.go TUN-8667: Add datagram v3 session manager 2024-10-31 14:05:15 -07:00
manager.go TUN-8709: Add session migration for datagram v3 2024-11-06 12:06:07 -08:00
manager_test.go TUN-8709: Add session migration for datagram v3 2024-11-06 12:06:07 -08:00
muxer.go TUN-8709: Add session migration for datagram v3 2024-11-06 12:06:07 -08:00
muxer_test.go TUN-8709: Add session migration for datagram v3 2024-11-06 12:06:07 -08:00
request.go TUN-8641: Expose methods to simplify V3 Datagram parsing on the edge 2024-11-04 15:23:36 -08:00
request_test.go TUN-8641: Expose methods to simplify V3 Datagram parsing on the edge 2024-11-04 15:23:36 -08:00
session.go TUN-8709: Add session migration for datagram v3 2024-11-06 12:06:07 -08:00
session_fuzz_test.go TUN-8667: Add datagram v3 session manager 2024-10-31 14:05:15 -07:00
session_test.go TUN-8709: Add session migration for datagram v3 2024-11-06 12:06:07 -08:00