diff options
author | guenther <> | 2016-11-04 18:00:12 +0000 |
---|---|---|
committer | guenther <> | 2016-11-04 18:00:12 +0000 |
commit | 145c17d7875703f3317c0294c215fc4aa38911a8 (patch) | |
tree | e59522907cddd6fbf1b018a0d30a66c424980a41 /src/lib/libssl/d1_pkt.c | |
parent | 8c6f31f782260e2f6b732ffdcf678b7e6ccb0ff6 (diff) | |
download | openbsd-145c17d7875703f3317c0294c215fc4aa38911a8.tar.gz openbsd-145c17d7875703f3317c0294c215fc4aa38911a8.tar.bz2 openbsd-145c17d7875703f3317c0294c215fc4aa38911a8.zip |
Make do_dtls1_write() static to d1_pkt.c and delete declarations for
three functions that were removed a while ago
ok jsing@
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) |