summaryrefslogtreecommitdiff
path: root/src/lib/libssl/pqueue.h
diff options
context:
space:
mode:
authormiod <>2014-05-12 19:14:14 +0000
committermiod <>2014-05-12 19:14:14 +0000
commitd65c39e2c5f99603b15513e73dbc0dc5ca5b73fd (patch)
treef99b0c7d57d24dcda17ac624bffd72e594930568 /src/lib/libssl/pqueue.h
parent184c91d9e726029e0dd6782d9ec4e2e1a7f7fc70 (diff)
downloadopenbsd-d65c39e2c5f99603b15513e73dbc0dc5ca5b73fd.tar.gz
openbsd-d65c39e2c5f99603b15513e73dbc0dc5ca5b73fd.tar.bz2
openbsd-d65c39e2c5f99603b15513e73dbc0dc5ca5b73fd.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 '')
-rw-r--r--src/lib/libssl/pqueue.h (renamed from src/lib/libcrypto/pqueue/pqueue.h)1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/libcrypto/pqueue/pqueue.h b/src/lib/libssl/pqueue.h
index 729e9abaf2..6e7df8f35b 100644
--- a/src/lib/libcrypto/pqueue/pqueue.h
+++ b/src/lib/libssl/pqueue.h
@@ -87,7 +87,6 @@ pitem *pqueue_find(pqueue pq, unsigned char *prio64be);
87pitem *pqueue_iterator(pqueue pq); 87pitem *pqueue_iterator(pqueue pq);
88pitem *pqueue_next(piterator *iter); 88pitem *pqueue_next(piterator *iter);
89 89
90void pqueue_print(pqueue pq);
91int pqueue_size(pqueue pq); 90int pqueue_size(pqueue pq);
92 91
93#endif /* ! HEADER_PQUEUE_H */ 92#endif /* ! HEADER_PQUEUE_H */