diff options
| author | guenther <> | 2016-11-04 18:00:12 +0000 |
|---|---|---|
| committer | guenther <> | 2016-11-04 18:00:12 +0000 |
| commit | 049a7b4c1f9de067f7ce6619f551699d3fc59d32 (patch) | |
| tree | e59522907cddd6fbf1b018a0d30a66c424980a41 /src/lib/libssl/d1_pkt.c | |
| parent | 2b55bb7be7eb8bcf6848e1ac668bcd5d8f2e33c6 (diff) | |
| download | openbsd-049a7b4c1f9de067f7ce6619f551699d3fc59d32.tar.gz openbsd-049a7b4c1f9de067f7ce6619f551699d3fc59d32.tar.bz2 openbsd-049a7b4c1f9de067f7ce6619f551699d3fc59d32.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 '')
| -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) |
