diff options
Diffstat (limited to 'include/internal/packet.h')
-rw-r--r-- | include/internal/packet.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/internal/packet.h b/include/internal/packet.h index ed76172078a4..6fcd345ce28d 100644 --- a/include/internal/packet.h +++ b/include/internal/packet.h @@ -1,5 +1,5 @@ /* - * Copyright 2015-2022 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2015-2024 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy @@ -627,7 +627,7 @@ __owur static ossl_inline int PACKET_get_length_prefixed_3(PACKET *pkt, return 1; } -/* Writeable packets */ +/* Writable packets */ typedef struct wpacket_sub WPACKET_SUB; struct wpacket_sub { @@ -691,6 +691,8 @@ struct wpacket_st { */ #define WPACKET_FLAGS_ABANDON_ON_ZERO_LENGTH 2 +/* QUIC variable-length integer length prefix */ +#define WPACKET_FLAGS_QUIC_VLINT 4 /* * Initialise a WPACKET with the buffer in |buf|. The buffer must exist |