From 6eb9f4e8d442a1181957027a462b0fd7230baeba Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sun, 16 May 2021 13:56:31 +0000 Subject: Move DTLS structs/definitions/prototypes to dtls_locl.h. Now that the DTLS structs are opaque, add a dtls_locl.h header and move internal-only structs from dtls1.h, along with prototypes from ssl_locl.h. Only pull this header in where DTLS code actually exists. ok inoguchi@ tb@ --- src/lib/libssl/ssl_both.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/libssl/ssl_both.c') diff --git a/src/lib/libssl/ssl_both.c b/src/lib/libssl/ssl_both.c index c133449a6d..40dddd0805 100644 --- a/src/lib/libssl/ssl_both.c +++ b/src/lib/libssl/ssl_both.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_both.c,v 1.30 2021/05/02 15:55:29 jsing Exp $ */ +/* $OpenBSD: ssl_both.c,v 1.31 2021/05/16 13:56:30 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -118,14 +118,14 @@ #include #include -#include "ssl_locl.h" - #include #include #include #include #include "bytestring.h" +#include "dtls_locl.h" +#include "ssl_locl.h" /* * Send s->internal->init_buf in records of type 'type' (SSL3_RT_HANDSHAKE or -- cgit v1.2.3-55-g6feb