diff options
Diffstat (limited to 'src/lib/libssl/d1_pkt.c')
-rw-r--r-- | src/lib/libssl/d1_pkt.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libssl/d1_pkt.c b/src/lib/libssl/d1_pkt.c index 5326a2c3d0..9ea7d5277a 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.48 2015/09/11 18:08:21 jsing Exp $ */ | 1 | /* $OpenBSD: d1_pkt.c,v 1.49 2016/11/04 18:00:12 guenther 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. |
@@ -126,6 +126,10 @@ | |||
126 | #include "pqueue.h" | 126 | #include "pqueue.h" |
127 | #include "bytestring.h" | 127 | #include "bytestring.h" |
128 | 128 | ||
129 | static int do_dtls1_write(SSL *s, int type, const unsigned char *buf, | ||
130 | unsigned int len); | ||
131 | |||
132 | |||
129 | /* mod 128 saturating subtract of two 64-bit values in big-endian order */ | 133 | /* mod 128 saturating subtract of two 64-bit values in big-endian order */ |
130 | static int | 134 | static int |
131 | satsub64be(const unsigned char *v1, const unsigned char *v2) | 135 | satsub64be(const unsigned char *v1, const unsigned char *v2) |