summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjsing <>2021-05-16 14:19:04 +0000
committerjsing <>2021-05-16 14:19:04 +0000
commit0114e0970d9a52e216323e46b79b51d46318e5fe (patch)
treed5b83d789971c5b6b5b8df5a9fea43dbdfc6633d
parentf90f5cc9a7987768e1cd09f4fc110caf5512afff (diff)
downloadopenbsd-0114e0970d9a52e216323e46b79b51d46318e5fe.tar.gz
openbsd-0114e0970d9a52e216323e46b79b51d46318e5fe.tar.bz2
openbsd-0114e0970d9a52e216323e46b79b51d46318e5fe.zip
Avoid pulling ssl_locl.h into self-contained code.
-rw-r--r--src/lib/libssl/tls13_buffer.c3
-rw-r--r--src/lib/libssl/tls13_handshake_msg.c3
-rw-r--r--src/lib/libssl/tls13_record.c3
-rw-r--r--src/lib/libssl/tls13_record_layer.c3
4 files changed, 4 insertions, 8 deletions
diff --git a/src/lib/libssl/tls13_buffer.c b/src/lib/libssl/tls13_buffer.c
index 49f2f1e21b..b46ac65ecf 100644
--- a/src/lib/libssl/tls13_buffer.c
+++ b/src/lib/libssl/tls13_buffer.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_buffer.c,v 1.4 2021/05/16 14:10:43 jsing Exp $ */ 1/* $OpenBSD: tls13_buffer.c,v 1.5 2021/05/16 14:19:04 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -16,7 +16,6 @@
16 */ 16 */
17 17
18#include "bytestring.h" 18#include "bytestring.h"
19#include "ssl_locl.h"
20#include "tls13_internal.h" 19#include "tls13_internal.h"
21 20
22struct tls13_buffer { 21struct tls13_buffer {
diff --git a/src/lib/libssl/tls13_handshake_msg.c b/src/lib/libssl/tls13_handshake_msg.c
index 21932fc4ee..ff6d6d7e19 100644
--- a/src/lib/libssl/tls13_handshake_msg.c
+++ b/src/lib/libssl/tls13_handshake_msg.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_handshake_msg.c,v 1.2 2019/11/20 16:21:20 beck Exp $ */ 1/* $OpenBSD: tls13_handshake_msg.c,v 1.3 2021/05/16 14:19:04 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -16,7 +16,6 @@
16 */ 16 */
17 17
18#include "bytestring.h" 18#include "bytestring.h"
19#include "ssl_locl.h"
20#include "tls13_internal.h" 19#include "tls13_internal.h"
21 20
22#define TLS13_HANDSHAKE_MSG_HEADER_LEN 4 21#define TLS13_HANDSHAKE_MSG_HEADER_LEN 4
diff --git a/src/lib/libssl/tls13_record.c b/src/lib/libssl/tls13_record.c
index 931671dd1e..3bdaead5a7 100644
--- a/src/lib/libssl/tls13_record.c
+++ b/src/lib/libssl/tls13_record.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_record.c,v 1.7 2021/05/16 14:10:43 jsing Exp $ */ 1/* $OpenBSD: tls13_record.c,v 1.8 2021/05/16 14:19:04 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -15,7 +15,6 @@
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */ 16 */
17 17
18#include "ssl_locl.h"
19#include "tls13_internal.h" 18#include "tls13_internal.h"
20#include "tls13_record.h" 19#include "tls13_record.h"
21 20
diff --git a/src/lib/libssl/tls13_record_layer.c b/src/lib/libssl/tls13_record_layer.c
index cdb6695a54..ff2a6884b6 100644
--- a/src/lib/libssl/tls13_record_layer.c
+++ b/src/lib/libssl/tls13_record_layer.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls13_record_layer.c,v 1.60 2021/05/16 14:10:43 jsing Exp $ */ 1/* $OpenBSD: tls13_record_layer.c,v 1.61 2021/05/16 14:19:04 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2018, 2019 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -15,7 +15,6 @@
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */ 16 */
17 17
18#include "ssl_locl.h"
19#include "tls13_internal.h" 18#include "tls13_internal.h"
20#include "tls13_record.h" 19#include "tls13_record.h"
21 20