diff options
author | beck <> | 2022-06-29 17:39:21 +0000 |
---|---|---|
committer | beck <> | 2022-06-29 17:39:21 +0000 |
commit | fc8a9f3799769566fe4b424c43a81a1a71f91328 (patch) | |
tree | 3406a8350556d9a6c42a2677a30e2dabf013942c /src/lib/libssl/tls1.h | |
parent | 6f4618c6c03ccd1d0f1b55dd8ff05af4a05abe78 (diff) | |
download | openbsd-fc8a9f3799769566fe4b424c43a81a1a71f91328.tar.gz openbsd-fc8a9f3799769566fe4b424c43a81a1a71f91328.tar.bz2 openbsd-fc8a9f3799769566fe4b424c43a81a1a71f91328.zip |
Add support for sending QUIC transport parameters
This is the start of adding the boringssl API for QUIC support,
and the TLS extensions necessary to send and receive QUIC transport
data.
Inspired by boringssl's https://boringssl-review.googlesource.com/24464
ok jsing@ tb@
Diffstat (limited to 'src/lib/libssl/tls1.h')
-rw-r--r-- | src/lib/libssl/tls1.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libssl/tls1.h b/src/lib/libssl/tls1.h index aa05f37cc8..2f6e2e3bd0 100644 --- a/src/lib/libssl/tls1.h +++ b/src/lib/libssl/tls1.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls1.h,v 1.52 2022/06/28 20:36:55 tb Exp $ */ | 1 | /* $OpenBSD: tls1.h,v 1.53 2022/06/29 17:39:20 beck Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -259,6 +259,9 @@ extern "C" { | |||
259 | /* ExtensionType value from RFC 7685. */ | 259 | /* ExtensionType value from RFC 7685. */ |
260 | #define TLSEXT_TYPE_padding 21 | 260 | #define TLSEXT_TYPE_padding 21 |
261 | 261 | ||
262 | /* ExtensionType value from draft-ietf-quic-tls */ | ||
263 | #define TLSEXT_TYPE_quic_transport_parameters 26 | ||
264 | |||
262 | /* ExtensionType value from RFC 4507. */ | 265 | /* ExtensionType value from RFC 4507. */ |
263 | #define TLSEXT_TYPE_session_ticket 35 | 266 | #define TLSEXT_TYPE_session_ticket 35 |
264 | 267 | ||