diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2021-05-16 13:56:32 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2021-05-16 13:56:32 +0000 |
commit | 5233be9a70ac292f3e0334a26891d82002f16a16 (patch) | |
tree | b8e800a98df875d7830907f7a4298bf4bc8e0be6 /lib/libssl/d1_pkt.c | |
parent | fe21671261e2252bbc88df4bc298d7a16c523f87 (diff) |
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@
Diffstat (limited to 'lib/libssl/d1_pkt.c')
-rw-r--r-- | lib/libssl/d1_pkt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libssl/d1_pkt.c b/lib/libssl/d1_pkt.c index 31ee5a679a0..3b3fd95f6f9 100644 --- a/lib/libssl/d1_pkt.c +++ b/lib/libssl/d1_pkt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: d1_pkt.c,v 1.95 2021/05/05 19:52:00 jsing Exp $ */ +/* $OpenBSD: d1_pkt.c,v 1.96 2021/05/16 13:56:30 jsing Exp $ */ /* * DTLS implementation written by Nagendra Modadugu * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. @@ -118,13 +118,13 @@ #include <errno.h> #include <stdio.h> -#include "ssl_locl.h" - #include <openssl/buffer.h> #include <openssl/evp.h> -#include "pqueue.h" #include "bytestring.h" +#include "dtls_locl.h" +#include "pqueue.h" +#include "ssl_locl.h" static int do_dtls1_write(SSL *s, int type, const unsigned char *buf, unsigned int len); |