diff options
| author | Vladimir Homutov <vl@nginx.com> | 2021-04-29 15:35:02 +0300 |
|---|---|---|
| committer | Vladimir Homutov <vl@nginx.com> | 2021-04-29 15:35:02 +0300 |
| commit | c4f5b50c47a867dfb72f80a5c3dd0e87508e0502 (patch) | |
| tree | cce9973d034d5652b5ffa460df3d3eee5f0e435a /src/event/quic/ngx_event_quic_output.h | |
| parent | a8acca865bc63efd0ae99284af37ed6bb246923b (diff) | |
| download | nginx-c4f5b50c47a867dfb72f80a5c3dd0e87508e0502.tar.gz nginx-c4f5b50c47a867dfb72f80a5c3dd0e87508e0502.tar.bz2 | |
QUIC: connection migration.
The patch adds proper transitions between multiple networking addresses that
can be used by a single quic connection. New networking paths are validated
using PATH_CHALLENGE/PATH_RESPONSE frames.
Diffstat (limited to 'src/event/quic/ngx_event_quic_output.h')
| -rw-r--r-- | src/event/quic/ngx_event_quic_output.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/event/quic/ngx_event_quic_output.h b/src/event/quic/ngx_event_quic_output.h index 3277122cb..396932fe2 100644 --- a/src/event/quic/ngx_event_quic_output.h +++ b/src/event/quic/ngx_event_quic_output.h @@ -30,11 +30,14 @@ ngx_int_t ngx_quic_send_early_cc(ngx_connection_t *c, ngx_int_t ngx_quic_send_retry(ngx_connection_t *c, ngx_quic_conf_t *conf, ngx_quic_header_t *pkt); -ngx_int_t ngx_quic_send_new_token(ngx_connection_t *c); +ngx_int_t ngx_quic_send_new_token(ngx_connection_t *c, ngx_quic_path_t *path); ngx_int_t ngx_quic_send_ack(ngx_connection_t *c, ngx_quic_send_ctx_t *ctx); ngx_int_t ngx_quic_send_ack_range(ngx_connection_t *c, ngx_quic_send_ctx_t *ctx, uint64_t smallest, uint64_t largest); +ssize_t ngx_quic_frame_sendto(ngx_connection_t *c, ngx_quic_frame_t *frame, + size_t min, struct sockaddr *sockaddr, socklen_t socklen); + #endif /* _NGX_EVENT_QUIC_OUTPUT_H_INCLUDED_ */ |
