summaryrefslogtreecommitdiffhomepage
path: root/src/event/ngx_event_quic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/event/ngx_event_quic.h')
-rw-r--r--src/event/ngx_event_quic.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/event/ngx_event_quic.h b/src/event/ngx_event_quic.h
index afc501424..c83b4d9b1 100644
--- a/src/event/ngx_event_quic.h
+++ b/src/event/ngx_event_quic.h
@@ -8,6 +8,9 @@
#define _NGX_EVENT_QUIC_H_INCLUDED_
+#include <ngx_event_openssl.h>
+
+
struct ngx_quic_connection_s {
ngx_str_t scid;
ngx_str_t dcid;
@@ -45,4 +48,9 @@ struct ngx_quic_connection_s {
};
+uint64_t ngx_quic_parse_pn(u_char **pos, ngx_int_t len, u_char *mask);
+uint64_t ngx_quic_parse_int(u_char **pos);
+void ngx_quic_build_int(u_char **pos, uint64_t value);
+
+
#endif /* _NGX_EVENT_QUIC_H_INCLUDED_ */