summaryrefslogtreecommitdiff
path: root/src/lib/libssl/tls13_internal.h
diff options
context:
space:
mode:
authorjsing <>2019-01-21 13:13:46 +0000
committerjsing <>2019-01-21 13:13:46 +0000
commitbde3ac13e78ee3960e9e0340d4af51a79ada0aa6 (patch)
tree3589e1b592f5465968101b9036eb046d8cc25049 /src/lib/libssl/tls13_internal.h
parent3f8f1b4265aaef35785756a4d46e78bc80f3baea (diff)
downloadopenbsd-bde3ac13e78ee3960e9e0340d4af51a79ada0aa6.tar.gz
openbsd-bde3ac13e78ee3960e9e0340d4af51a79ada0aa6.tar.bz2
openbsd-bde3ac13e78ee3960e9e0340d4af51a79ada0aa6.zip
Wire up the handshake message send and recv actions.
This means that we actually receive and send handshake messages to and from the record layer. ok tb@
Diffstat (limited to '')
-rw-r--r--src/lib/libssl/tls13_internal.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libssl/tls13_internal.h b/src/lib/libssl/tls13_internal.h
index 03de0fc40e..6ddce37ca3 100644
--- a/src/lib/libssl/tls13_internal.h
+++ b/src/lib/libssl/tls13_internal.h
@@ -1,7 +1,8 @@
1/* $OpenBSD: tls13_internal.h,v 1.13 2019/01/21 10:44:08 jsing Exp $ */ 1/* $OpenBSD: tls13_internal.h,v 1.14 2019/01/21 13:13:46 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2018 Bob Beck <beck@openbsd.org> 3 * Copyright (c) 2018 Bob Beck <beck@openbsd.org>
4 * Copyright (c) 2018 Theo Buehler <tb@openbsd.org> 4 * Copyright (c) 2018 Theo Buehler <tb@openbsd.org>
5 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org>
5 * 6 *
6 * Permission to use, copy, modify, and/or distribute this software for any 7 * Permission to use, copy, modify, and/or distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above 8 * purpose with or without fee is hereby granted, provided that the above
@@ -146,7 +147,9 @@ struct tls13_ctx {
146 SSL *ssl; 147 SSL *ssl;
147 uint8_t mode; 148 uint8_t mode;
148 struct tls13_handshake_stage handshake_stage; 149 struct tls13_handshake_stage handshake_stage;
150
149 struct tls13_record_layer *rl; 151 struct tls13_record_layer *rl;
152 struct tls13_handshake_msg *hs_msg;
150}; 153};
151 154
152/* 155/*