diff options
Diffstat (limited to 'src/lib/libssl/d1_pkt.c')
-rw-r--r-- | src/lib/libssl/d1_pkt.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/lib/libssl/d1_pkt.c b/src/lib/libssl/d1_pkt.c index 7aa5aac752..83b9bf1ce2 100644 --- a/src/lib/libssl/d1_pkt.c +++ b/src/lib/libssl/d1_pkt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: d1_pkt.c,v 1.36 2014/10/22 15:29:31 jsing Exp $ */ | 1 | /* $OpenBSD: d1_pkt.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. |
@@ -113,12 +113,15 @@ | |||
113 | * [including the GNU Public Licence.] | 113 | * [including the GNU Public Licence.] |
114 | */ | 114 | */ |
115 | 115 | ||
116 | #include <stdio.h> | ||
117 | #include <errno.h> | ||
118 | #include <machine/endian.h> | 116 | #include <machine/endian.h> |
117 | |||
118 | #include <errno.h> | ||
119 | #include <stdio.h> | ||
120 | |||
119 | #include "ssl_locl.h" | 121 | #include "ssl_locl.h" |
120 | #include <openssl/evp.h> | 122 | |
121 | #include <openssl/buffer.h> | 123 | #include <openssl/buffer.h> |
124 | #include <openssl/evp.h> | ||
122 | 125 | ||
123 | #include "pqueue.h" | 126 | #include "pqueue.h" |
124 | 127 | ||