src/event/quic/ngx_event_quic_connid.h - nginx source code

Macros defined

Source code


  1. /*
  2. * Copyright (C) Nginx, Inc.
  3. */


  4. #ifndef _NGX_EVENT_QUIC_CONNID_H_INCLUDED_
  5. #define _NGX_EVENT_QUIC_CONNID_H_INCLUDED_


  6. #include <ngx_config.h>
  7. #include <ngx_core.h>


  8. ngx_int_t ngx_quic_handle_retire_connection_id_frame(ngx_connection_t *c,
  9.     ngx_quic_retire_cid_frame_t *f);
  10. ngx_int_t ngx_quic_handle_new_connection_id_frame(ngx_connection_t *c,
  11.     ngx_quic_new_conn_id_frame_t *f);

  12. ngx_int_t ngx_quic_create_sockets(ngx_connection_t *c);
  13. ngx_int_t ngx_quic_create_server_id(ngx_connection_t *c, u_char *id);

  14. ngx_quic_client_id_t *ngx_quic_create_client_id(ngx_connection_t *c,
  15.     ngx_str_t *id, uint64_t seqnum, u_char *token);
  16. ngx_quic_client_id_t *ngx_quic_next_client_id(ngx_connection_t *c);
  17. ngx_int_t ngx_quic_free_client_id(ngx_connection_t *c,
  18.     ngx_quic_client_id_t *cid);

  19. #endif /* _NGX_EVENT_QUIC_CONNID_H_INCLUDED_ */