comparison src/core/ngx_connection.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 0af598651e33
children 1c9264603adc
comparison
equal deleted inserted replaced
9146:f3412ec3b6d1 9147:58afcd72446f
95 typedef enum { 95 typedef enum {
96 NGX_ERROR_ALERT = 0, 96 NGX_ERROR_ALERT = 0,
97 NGX_ERROR_ERR, 97 NGX_ERROR_ERR,
98 NGX_ERROR_INFO, 98 NGX_ERROR_INFO,
99 NGX_ERROR_IGNORE_ECONNRESET, 99 NGX_ERROR_IGNORE_ECONNRESET,
100 NGX_ERROR_IGNORE_EINVAL 100 NGX_ERROR_IGNORE_EINVAL,
101 NGX_ERROR_IGNORE_EMSGSIZE
101 } ngx_connection_log_error_e; 102 } ngx_connection_log_error_e;
102 103
103 104
104 typedef enum { 105 typedef enum {
105 NGX_TCP_NODELAY_UNSET = 0, 106 NGX_TCP_NODELAY_UNSET = 0,