summaryrefslogtreecommitdiff
path: root/src/lib/libssl/d1_pkt.c
diff options
context:
space:
mode:
authorguenther <>2016-11-04 18:00:12 +0000
committerguenther <>2016-11-04 18:00:12 +0000
commit145c17d7875703f3317c0294c215fc4aa38911a8 (patch)
treee59522907cddd6fbf1b018a0d30a66c424980a41 /src/lib/libssl/d1_pkt.c
parent8c6f31f782260e2f6b732ffdcf678b7e6ccb0ff6 (diff)
downloadopenbsd-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.c6
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
129static 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 */
130static int 134static int
131satsub64be(const unsigned char *v1, const unsigned char *v2) 135satsub64be(const unsigned char *v1, const unsigned char *v2)