summaryrefslogtreecommitdiff
path: root/src/lib/libssl/pqueue.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* No need to check for NULL before invoking free(); use calloc() whenmiod2014-05-181-30/+7
| | | | | | applicable; further simplify pqueue_find(). From Dimitris Papastamos on tech@
* Move the `pqueue' part of libcrypto, which is a glorified sorted linked listmiod2014-05-121-0/+222
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.