summaryrefslogtreecommitdiff
path: root/lib/libssl/d1_srvr.c
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2014-11-16 14:12:48 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2014-11-16 14:12:48 +0000
commit19d77e69b7ab92bed5e96f9b8a92b30aac750e47 (patch)
treeb3d70c3ef9296f1a9ab90aaa99e64ea79b8201fb /lib/libssl/d1_srvr.c
parent0c91d12c143c2f5d42e30144bf144fd14fb1c431 (diff)
Sort and group includes.
Diffstat (limited to 'lib/libssl/d1_srvr.c')
-rw-r--r--lib/libssl/d1_srvr.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/libssl/d1_srvr.c b/lib/libssl/d1_srvr.c
index d2f642f8773..e1959fb7e1d 100644
--- a/lib/libssl/d1_srvr.c
+++ b/lib/libssl/d1_srvr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: d1_srvr.c,v 1.41 2014/10/31 14:51:01 jsing Exp $ */
+/* $OpenBSD: d1_srvr.c,v 1.42 2014/11/16 14:12:47 jsing Exp $ */
/*
* DTLS implementation written by Nagendra Modadugu
* (nagendra@cs.stanford.edu) for the OpenSSL project 2005.
@@ -114,14 +114,16 @@
*/
#include <stdio.h>
+
#include "ssl_locl.h"
+
+#include <openssl/bn.h>
#include <openssl/buffer.h>
-#include <openssl/objects.h>
+#include <openssl/dh.h>
#include <openssl/evp.h>
-#include <openssl/x509.h>
#include <openssl/md5.h>
-#include <openssl/bn.h>
-#include <openssl/dh.h>
+#include <openssl/objects.h>
+#include <openssl/x509.h>
static const SSL_METHOD *dtls1_get_server_method(int ver);
static int dtls1_send_hello_verify_request(SSL *s);