summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* MPE support, begone. ok teduderaadt2014-11-211-2/+2
* f{read,write} take a number of items and an item size as arguments, andmiod2014-11-112-14/+7
* Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes().jsing2014-10-221-4/+4
* The return value on success of fcntl(F_SETFL) is not actually specified,bcook2014-10-131-3/+3
* Use O_NONBLOCK over FIONBIO.bcook2014-10-131-2/+8
* Include <sys/time.h> to get struct timevalbcook2014-08-241-1/+2
* BIO_free() returns immediately when the sole input is NULL.doug2014-07-252-8/+5
* Mark the format string argument to BIO_*printf as not being allowed to be NULLguenther2014-07-201-5/+7
* do not need a variable to track locking, since all code paths have itderaadt2014-07-161-5/+2
* The bell tolls for BUF_strdup - Start the migration to usingbeck2014-07-133-8/+8
* unbreak build this needed to be an and..beck2014-07-131-2/+2
* Take out __bounded__ in the include files we use it in when not on OpenBSD.beck2014-07-131-2/+4
* Fix a memory leak in BIO_free() which no current BIO can trigger; OpenSSLmiod2014-07-111-4/+3
* Missing calloc() return value check in dgram_sctp_ctrl(); from Kurt Roeckx viamiod2014-07-111-11/+21
* Only import cryptlib.h in the four source files that actually need it.jsing2014-07-1117-47/+40
* Explicitly include <openssl/opensslconf.h> in every file that referencesjsing2014-07-103-3/+10
* Simplify realloc() usage; ok tedu@miod2014-07-101-15/+6
* Stop including standard headers via cryptlib.h - pull in the headers thatjsing2014-07-1012-39/+57
* delete some casts. ok miodtedu2014-07-101-2/+2
* replace getservbyname_r with getaddrinfo for portabilitybcook2014-07-101-6/+11
* include <limits.h> for LONG_MIN/LONG_MAX.bcook2014-07-091-2/+2
* add <sys/filio.h> header for FIONBIObcook2014-07-091-1/+2
* Pretty much everything has SO_REUSEADDR - nuke the #ifdefs.jsing2014-07-081-5/+1
* We have EAI_FAMILY - remove the #ifdefs.jsing2014-07-081-5/+1
* More KNF.jsing2014-07-081-11/+21
* Avoid locking in BIO_get_port() by using getservbyname_r() instead ofjsing2014-07-081-31/+31
* Simplify various BIO_sock_* fuctions - less code, better variable names,jsing2014-07-081-27/+12
* Replace 48 lines of code with a single inet_pton() call. The previousjsing2014-06-241-48/+3
* Actually make BIO_set_tcp_ndelay() work - TCP_NODELAY will not magicallyjsing2014-06-241-16/+3
* BIO_sock_init() no longer does anything, so stop calling it.jsing2014-06-221-10/+1
* Just use SOMAXCONN and IPPROTO_TCP, since we know we have them.jsing2014-06-221-14/+4
* In BIO_get_port(), use strol() with appropriate range checks rather thanjsing2014-06-223-34/+50
* tags as requested by miod and teduderaadt2014-06-1221-21/+22
* Tsk. Tsk. Someone forgot to compile test the other half.jsing2014-06-111-2/+2
* Provide support for non-funopen systems.deraadt2014-06-111-8/+30
* c-file-style hints, begone; ok beckderaadt2014-06-111-1/+1
* Stop using DSO_global_lookup to reach getaddrinfo() and friendsderaadt2014-06-081-40/+3
* Fix memory leak.logan2014-06-031-0/+1
* Remove __bio_h__attr__ wrapper around __attribute__, since earlier statementsmiod2014-06-011-10/+4
* Fix some more nasty stringyness in here by using asprintf instead of cruft.beck2014-05-301-10/+7
* more: no need for null check before freederaadt2014-05-308-41/+19
* remove CONST_STRICT. ok beck deraadttedu2014-05-301-7/+0
* Everything sane has stdio, and FILE *. we don't need ifdefs for this.beck2014-05-292-8/+0
* Any sane platform has stdio. Stop pretending we will ever use a platformbeck2014-05-292-4/+0
* Almost nothing actually needs to include <openssl/e_os2.h>, however byjsing2014-05-241-1/+1
* Spell ssize_t correctly (the incorrect spelling is ossl_ssize_t).jsing2014-05-241-9/+9
* mark BIO_snprintf as deprecated, so warnings will be generated for it'sbeck2014-05-221-2/+2
* Sort and group includes.jsing2014-05-052-10/+11
* Repair BIO_socket_nbio operation.jsing2014-05-051-2/+3
* Use C99 initializers for the various FOO_METHOD structs. More readable, andmiod2014-04-2714-148/+132