diff options
| author | Sergey Kandaurov <pluknet@nginx.com> | 2020-08-19 15:58:03 +0300 |
|---|---|---|
| committer | Sergey Kandaurov <pluknet@nginx.com> | 2020-08-19 15:58:03 +0300 |
| commit | a4e06606c5fdfa846b21de5aa0b5916c55367a27 (patch) | |
| tree | 7a388c1eae7b617cc876301d37e1b76e94257ac5 | |
| parent | f760147d9de72bf162d354807dc8b16522d9433c (diff) | |
| download | nginx-a4e06606c5fdfa846b21de5aa0b5916c55367a27.tar.gz nginx-a4e06606c5fdfa846b21de5aa0b5916c55367a27.tar.bz2 | |
QUIC: changed c->quic->pto_count type to ngx_uint_t.
This field is served as a simple counter for PTO backoff.
| -rw-r--r-- | src/event/ngx_event_quic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/ngx_event_quic.c b/src/event/ngx_event_quic.c index 5a049ed3f..0cb573130 100644 --- a/src/event/ngx_event_quic.c +++ b/src/event/ngx_event_quic.c @@ -117,7 +117,7 @@ struct ngx_quic_connection_s { ngx_msec_t min_rtt; ngx_msec_t rttvar; - ngx_msec_t pto_count; + ngx_uint_t pto_count; #if (NGX_DEBUG) ngx_uint_t nframes; |
