summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/bio (follow)
Commit message (Expand)AuthorAgeFilesLines
* No original OpenSSL code remains in this file. Relicensebeck2017-04-301-54/+13
* Make BIO_get_host_ip just yet another getaddrinfo wrapperbeck2017-04-301-27/+20
* Rework BIO_accept to be more like modern code.beck2017-04-301-54/+19
* Microsoft Windows hates BIO_get_accept_socket in portable. Fix it tobeck2017-04-301-115/+35
* trailing ; on end of macro definition is wrong; ok guentherderaadt2017-04-061-4/+4
* Send the function codes from the error functions to the bit bucket,beck2017-01-2910-115/+75
* Delete completely useless crap and just use getaddrinfo. Fix man pagebeck2016-12-201-44/+7
* remove NULL-checks before free()mmcc2015-12-231-5/+3
* Pull in <sys/types.h> to get ssize_t or <stdint.h> to get uint32_t, instead ofmiod2015-10-301-1/+2
* Correct #if/else logic in BIO's dgram_ctrl.doug2015-07-201-3/+3
* Drop stupid (int) casts for the arguments of malloc() and friends. This ismiod2015-07-192-6/+6
* Fix Coverity 72742 - ret is overwritten immediately after this.beck2015-07-191-2/+1
* Dead code, Coverity 78798beck2015-07-181-3/+1
* Fix warning on vax due to old gcc.doug2015-06-201-4/+4
* Do not need to buf[0] = 0 before strlcpy(buf, ...deraadt2015-04-231-2/+1
* Fix indentation that incorrectly implies a different control flow.doug2015-03-211-2/+2
* If you do not support POSIX I/O then you're not tall enough to ride...jsing2015-02-121-8/+1
* Remove more IMPLEMENT_STACK_OF noops that have been hiding for the lastjsing2015-02-101-3/+1
* Jettison SCTP support in BIO dgram.jsing2015-02-092-1052/+2
* Delete a lot of #if 0 code in libressl.doug2015-02-071-11/+4
* Fix a memory leak in bss_dgram.doug2015-01-121-3/+13
* Fix incorrect OPENSSL_assert() usage.doug2015-01-031-24/+53
* Use platform-defined method of printing a pointer.bcook2014-12-081-2/+2
* Move Windows OS-specific functions to make porting easier.bcook2014-12-032-24/+89
* We're not supporting 16-bit Windows, remove cast.bcook2014-12-031-3/+2
* remove superflous gettimeofday wrapper.bcook2014-11-261-9/+2
* memset like a normal human.bcook2014-11-261-10/+10
* normalize set/getsockopt usage.bcook2014-11-263-45/+27
* Linux has had IP_MTU since 2005, don't force it.bcook2014-11-261-8/+4
* 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