diff options
author | Roman Arutyunyan <arut@nginx.com> | 2021-12-06 13:02:36 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2021-12-06 13:02:36 +0300 |
commit | 731915a0c5e90b79d3cca1a4b0a3c33e1f77631c (patch) | |
tree | 5282f6ce9982b7dc159b98a04baeedd03a7cb4fc /src/http/modules/ngx_http_quic_module.h | |
parent | ea55dbccb248629628baad2b85d7634c82b613ec (diff) | |
download | nginx-731915a0c5e90b79d3cca1a4b0a3c33e1f77631c.tar.gz nginx-731915a0c5e90b79d3cca1a4b0a3c33e1f77631c.zip |
HTTP/3: merged ngx_http_quic_module into ngx_http_v3_module.
Diffstat (limited to 'src/http/modules/ngx_http_quic_module.h')
-rw-r--r-- | src/http/modules/ngx_http_quic_module.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/http/modules/ngx_http_quic_module.h b/src/http/modules/ngx_http_quic_module.h deleted file mode 100644 index 3b96fcc47..000000000 --- a/src/http/modules/ngx_http_quic_module.h +++ /dev/null @@ -1,28 +0,0 @@ - -/* - * Copyright (C) Nginx, Inc. - * Copyright (C) Roman Arutyunyan - */ - - -#ifndef _NGX_HTTP_QUIC_H_INCLUDED_ -#define _NGX_HTTP_QUIC_H_INCLUDED_ - - -#include <ngx_config.h> -#include <ngx_core.h> -#include <ngx_http.h> - - -#define NGX_HTTP_QUIC_ALPN_PROTO "\x0Ahq-interop" -#define NGX_HTTP_QUIC_ALPN_DRAFT_FMT "\x05hq-%02uD" - - -#define ngx_http_quic_get_connection(c) \ - ((ngx_http_connection_t *) (c)->quic->parent->data) - - -ngx_int_t ngx_http_quic_init(ngx_connection_t *c); - - -#endif /* _NGX_HTTP_QUIC_H_INCLUDED_ */ |