comparison src/event/quic/ngx_event_quic_output.h @ 9147:58afcd72446f

QUIC: path MTU discovery. MTU selection starts by doubling the initial MTU until the first failure. Then binary search is used to find the path MTU.
author Roman Arutyunyan <arut@nginx.com>
date Mon, 14 Aug 2023 09:21:27 +0400
parents 501f28679d56
children fcec773dd249
comparison
equal deleted inserted replaced
9146:f3412ec3b6d1 9147:58afcd72446f
9 9
10 10
11 #include <ngx_config.h> 11 #include <ngx_config.h>
12 #include <ngx_core.h> 12 #include <ngx_core.h>
13 13
14
15 size_t ngx_quic_max_udp_payload(ngx_connection_t *c);
16 14
17 ngx_int_t ngx_quic_output(ngx_connection_t *c); 15 ngx_int_t ngx_quic_output(ngx_connection_t *c);
18 16
19 ngx_int_t ngx_quic_negotiate_version(ngx_connection_t *c, 17 ngx_int_t ngx_quic_negotiate_version(ngx_connection_t *c,
20 ngx_quic_header_t *inpkt); 18 ngx_quic_header_t *inpkt);