summaryrefslogtreecommitdiff
path: root/lib/libcrypto/bio
AgeCommit message (Expand)Author
2017-04-30No original OpenSSL code remains in this file. RelicenseBob Beck
2017-04-30Make BIO_get_host_ip just yet another getaddrinfo wrapperBob Beck
2017-04-30Rework BIO_accept to be more like modern code.Bob Beck
2017-04-30Microsoft Windows hates BIO_get_accept_socket in portable. Fix it toBob Beck
2017-04-06trailing ; on end of macro definition is wrong; ok guentherTheo de Raadt
2017-01-29Send the function codes from the error functions to the bit bucket,Bob Beck
2016-12-20Delete completely useless crap and just use getaddrinfo. Fix man pageBob Beck
2015-12-23remove NULL-checks before free()Michael McConville
2015-10-30Pull in <sys/types.h> to get ssize_t or <stdint.h> to get uint32_t, instead ofMiod Vallat
2015-07-20Correct #if/else logic in BIO's dgram_ctrl.Doug Hogan
2015-07-19Drop stupid (int) casts for the arguments of malloc() and friends. This isMiod Vallat
2015-07-19Fix Coverity 72742 - ret is overwritten immediately after this.Bob Beck
2015-07-18Dead code, Coverity 78798Bob Beck
2015-06-20Fix warning on vax due to old gcc.Doug Hogan
2015-04-23Do not need to buf[0] = 0 before strlcpy(buf, ...Theo de Raadt
2015-03-21Fix indentation that incorrectly implies a different control flow.Doug Hogan
2015-02-12If you do not support POSIX I/O then you're not tall enough to ride...Joel Sing
2015-02-10Remove more IMPLEMENT_STACK_OF noops that have been hiding for the lastJoel Sing
2015-02-09Jettison SCTP support in BIO dgram.Joel Sing
2015-02-07Delete a lot of #if 0 code in libressl.Doug Hogan
2015-01-12Fix a memory leak in bss_dgram.Doug Hogan
2015-01-03Fix incorrect OPENSSL_assert() usage.Doug Hogan
2014-12-08Use platform-defined method of printing a pointer.Brent Cook
2014-12-03Move Windows OS-specific functions to make porting easier.Brent Cook
2014-12-03We're not supporting 16-bit Windows, remove cast.Brent Cook
2014-11-26remove superflous gettimeofday wrapper.Brent Cook
2014-11-26memset like a normal human.Brent Cook
2014-11-26normalize set/getsockopt usage.Brent Cook
2014-11-26Linux has had IP_MTU since 2005, don't force it.Brent Cook
2014-11-21MPE support, begone. ok teduTheo de Raadt
2014-11-11f{read,write} take a number of items and an item size as arguments, andMiod Vallat
2014-10-22Use arc4random_buf() instead of RAND_bytes() or RAND_pseudo_bytes().Joel Sing
2014-10-13The return value on success of fcntl(F_SETFL) is not actually specified,Brent Cook
2014-10-13Use O_NONBLOCK over FIONBIO.Brent Cook
2014-08-24Include <sys/time.h> to get struct timevalBrent Cook
2014-07-25BIO_free() returns immediately when the sole input is NULL.Doug Hogan
2014-07-20Mark the format string argument to BIO_*printf as not being allowed to be NULLPhilip Guenther
2014-07-16do not need a variable to track locking, since all code paths have itTheo de Raadt
2014-07-13The bell tolls for BUF_strdup - Start the migration to usingBob Beck
2014-07-13unbreak build this needed to be an and..Bob Beck
2014-07-13Take out __bounded__ in the include files we use it in when not on OpenBSD.Bob Beck
2014-07-11Fix a memory leak in BIO_free() which no current BIO can trigger; OpenSSLMiod Vallat
2014-07-11Missing calloc() return value check in dgram_sctp_ctrl(); from Kurt Roeckx viaMiod Vallat
2014-07-11Only import cryptlib.h in the four source files that actually need it.Joel Sing
2014-07-10Explicitly include <openssl/opensslconf.h> in every file that referencesJoel Sing
2014-07-10Simplify realloc() usage; ok tedu@Miod Vallat
2014-07-10Stop including standard headers via cryptlib.h - pull in the headers thatJoel Sing
2014-07-10delete some casts. ok miodTed Unangst
2014-07-10replace getservbyname_r with getaddrinfo for portabilityBrent Cook
2014-07-09include <limits.h> for LONG_MIN/LONG_MAX.Brent Cook