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_connid.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_connid.h')
| -rw-r--r-- | src/event/quic/ngx_event_quic_connid.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/event/quic/ngx_event_quic_connid.h b/src/event/quic/ngx_event_quic_connid.h index cec09829d..fc7850a9c 100644 --- a/src/event/quic/ngx_event_quic_connid.h +++ b/src/event/quic/ngx_event_quic_connid.h @@ -12,14 +12,17 @@ #include <ngx_core.h> -ngx_int_t ngx_quic_setup_connection_ids(ngx_connection_t *c, - ngx_quic_connection_t *qc, ngx_quic_header_t *pkt); -void ngx_quic_clear_temp_server_ids(ngx_connection_t *c); -ngx_int_t ngx_quic_issue_server_ids(ngx_connection_t *c); - ngx_int_t ngx_quic_handle_retire_connection_id_frame(ngx_connection_t *c, ngx_quic_header_t *pkt, ngx_quic_retire_cid_frame_t *f); ngx_int_t ngx_quic_handle_new_connection_id_frame(ngx_connection_t *c, ngx_quic_header_t *pkt, ngx_quic_new_conn_id_frame_t *f); +ngx_int_t ngx_quic_create_sockets(ngx_connection_t *c); +ngx_int_t ngx_quic_create_server_id(ngx_connection_t *c, u_char *id); + +ngx_quic_client_id_t *ngx_quic_create_client_id(ngx_connection_t *c, + ngx_str_t *id, uint64_t seqnum, u_char *token); +ngx_quic_client_id_t *ngx_quic_next_client_id(ngx_connection_t *c); +void ngx_quic_unref_client_id(ngx_connection_t *c, ngx_quic_client_id_t *cid); + #endif /* _NGX_EVENT_QUIC_CONNID_H_INCLUDED_ */ |
