diff options
author | Vladimir Homutov <vl@nginx.com> | 2020-12-30 20:47:35 +0300 |
---|---|---|
committer | Vladimir Homutov <vl@nginx.com> | 2020-12-30 20:47:35 +0300 |
commit | 291eb52899b39f3f1a7bfbab4b73abea1efa2c1f (patch) | |
tree | 4e6d57781f7889410f7a36f3c3c0b3be9685a022 | |
parent | c4f31ccca174ff617a594b49ef255354e979b72d (diff) | |
download | nginx-291eb52899b39f3f1a7bfbab4b73abea1efa2c1f.tar.gz nginx-291eb52899b39f3f1a7bfbab4b73abea1efa2c1f.zip |
QUIC: fixed header protection macro name.
-rw-r--r-- | src/event/quic/ngx_event_quic_transport.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/event/quic/ngx_event_quic_transport.h b/src/event/quic/ngx_event_quic_transport.h index fe1cf2632..1a3fe7766 100644 --- a/src/event/quic/ngx_event_quic_transport.h +++ b/src/event/quic/ngx_event_quic_transport.h @@ -4,8 +4,8 @@ */ -#ifndef _NGX_EVENT_QUIC_WIRE_H_INCLUDED_ -#define _NGX_EVENT_QUIC_WIRE_H_INCLUDED_ +#ifndef _NGX_EVENT_QUIC_TRANSPORT_H_INCLUDED_ +#define _NGX_EVENT_QUIC_TRANSPORT_H_INCLUDED_ #include <ngx_config.h> @@ -355,4 +355,4 @@ ssize_t ngx_quic_create_transport_params(u_char *p, u_char *end, void ngx_quic_dcid_encode_key(u_char *dcid, uint64_t key); -#endif /* _NGX_EVENT_QUIC_WIRE_H_INCLUDED_ */ +#endif /* _NGX_EVENT_QUIC_TRANSPORT_H_INCLUDED_ */ |