diff options
author | miod <> | 2014-05-12 19:14:14 +0000 |
---|---|---|
committer | miod <> | 2014-05-12 19:14:14 +0000 |
commit | bb1f78b0976389edbc302ea662b80029cbf5ce5a (patch) | |
tree | f99b0c7d57d24dcda17ac624bffd72e594930568 /src/lib/libssl/ssl | |
parent | 9d93f27329372e68682819911c1e89467694ad93 (diff) | |
download | openbsd-bb1f78b0976389edbc302ea662b80029cbf5ce5a.tar.gz openbsd-bb1f78b0976389edbc302ea662b80029cbf5ce5a.tar.bz2 openbsd-bb1f78b0976389edbc302ea662b80029cbf5ce5a.zip |
Move the `pqueue' part of libcrypto, which is a glorified sorted linked list
of 64-bit data, and only used by DTLS, to libssl where it belongs.
Remove pqueue_print() which is a debugging interface and serves no useful
purpose, except for the regress test, which grows its own pqueue_print()
routine.
Bump libcrypto major and libssl minor.
WARNING: do not update your tree right now, more changes are coming, which
will ride the libcrypto major bump.
Diffstat (limited to 'src/lib/libssl/ssl')
-rw-r--r-- | src/lib/libssl/ssl/Makefile | 7 | ||||
-rw-r--r-- | src/lib/libssl/ssl/shlib_version | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/libssl/ssl/Makefile b/src/lib/libssl/ssl/Makefile index 737121fce4..8975572be8 100644 --- a/src/lib/libssl/ssl/Makefile +++ b/src/lib/libssl/ssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.41 2014/05/05 15:03:22 tedu Exp $ | 1 | # $OpenBSD: Makefile,v 1.42 2014/05/12 19:14:14 miod Exp $ |
2 | 2 | ||
3 | LIB= ssl | 3 | LIB= ssl |
4 | 4 | ||
@@ -19,10 +19,11 @@ SRCS=\ | |||
19 | ssl_lib.c ssl_err2.c ssl_cert.c ssl_sess.c \ | 19 | ssl_lib.c ssl_err2.c ssl_cert.c ssl_sess.c \ |
20 | ssl_ciph.c ssl_stat.c ssl_rsa.c \ | 20 | ssl_ciph.c ssl_stat.c ssl_rsa.c \ |
21 | ssl_asn1.c ssl_txt.c ssl_algs.c \ | 21 | ssl_asn1.c ssl_txt.c ssl_algs.c \ |
22 | bio_ssl.c ssl_err.c t1_reneg.c | 22 | bio_ssl.c ssl_err.c t1_reneg.c \ |
23 | pqueue.c | ||
23 | SRCS+= s3_cbc.c | 24 | SRCS+= s3_cbc.c |
24 | 25 | ||
25 | HDRS= srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h kssl.h | 26 | HDRS= srtp.h ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h kssl.h pqueue.h |
26 | 27 | ||
27 | .PATH: ${LSSL_SRC} | 28 | .PATH: ${LSSL_SRC} |
28 | 29 | ||
diff --git a/src/lib/libssl/ssl/shlib_version b/src/lib/libssl/ssl/shlib_version index 906022aa66..aa54cbb404 100644 --- a/src/lib/libssl/ssl/shlib_version +++ b/src/lib/libssl/ssl/shlib_version | |||
@@ -1,2 +1,2 @@ | |||
1 | major=24 | 1 | major=24 |
2 | minor=0 | 2 | minor=1 |