diff options
author | jsing <> | 2014-11-16 14:12:47 +0000 |
---|---|---|
committer | jsing <> | 2014-11-16 14:12:47 +0000 |
commit | d6b346577efe94c30d6ba08ca7f8feae71688a3c (patch) | |
tree | 04d418c3104bff49ee7d27e26e24c2cb5fd85474 /src/lib/libssl/d1_clnt.c | |
parent | 00ff8dba92ed1b03a8b2b502f1c8509ee150189d (diff) | |
download | openbsd-d6b346577efe94c30d6ba08ca7f8feae71688a3c.tar.gz openbsd-d6b346577efe94c30d6ba08ca7f8feae71688a3c.tar.bz2 openbsd-d6b346577efe94c30d6ba08ca7f8feae71688a3c.zip |
Sort and group includes.
Diffstat (limited to 'src/lib/libssl/d1_clnt.c')
-rw-r--r-- | src/lib/libssl/d1_clnt.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/libssl/d1_clnt.c b/src/lib/libssl/d1_clnt.c index 4b71f01a6c..7f6e232128 100644 --- a/src/lib/libssl/d1_clnt.c +++ b/src/lib/libssl/d1_clnt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_clnt.c,v 1.36 2014/10/18 16:13:16 jsing Exp $ */ | 1 | /* $OpenBSD: d1_clnt.c,v 1.37 2014/11/16 14:12:47 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * DTLS implementation written by Nagendra Modadugu | 3 | * DTLS implementation written by Nagendra Modadugu |
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. |
@@ -114,13 +114,15 @@ | |||
114 | */ | 114 | */ |
115 | 115 | ||
116 | #include <stdio.h> | 116 | #include <stdio.h> |
117 | |||
117 | #include "ssl_locl.h" | 118 | #include "ssl_locl.h" |
119 | |||
120 | #include <openssl/bn.h> | ||
118 | #include <openssl/buffer.h> | 121 | #include <openssl/buffer.h> |
119 | #include <openssl/objects.h> | 122 | #include <openssl/dh.h> |
120 | #include <openssl/evp.h> | 123 | #include <openssl/evp.h> |
121 | #include <openssl/md5.h> | 124 | #include <openssl/md5.h> |
122 | #include <openssl/bn.h> | 125 | #include <openssl/objects.h> |
123 | #include <openssl/dh.h> | ||
124 | 126 | ||
125 | static const SSL_METHOD *dtls1_get_client_method(int ver); | 127 | static const SSL_METHOD *dtls1_get_client_method(int ver); |
126 | static int dtls1_get_hello_verify(SSL *s); | 128 | static int dtls1_get_hello_verify(SSL *s); |