| Commit message (Expand) | Author | Age | Files | Lines |
* | Restore the old behavior when a port number without a host name is | bluhm | 2018-02-07 | 1 | -10/+12 |
* | Do not call freeaddrinfo() with a NULL parameter. | bluhm | 2018-02-06 | 1 | -2/+3 |
* | No original OpenSSL code remains in this file. Relicense | beck | 2017-04-30 | 1 | -54/+13 |
* | Make BIO_get_host_ip just yet another getaddrinfo wrapper | beck | 2017-04-30 | 1 | -27/+20 |
* | Rework BIO_accept to be more like modern code. | beck | 2017-04-30 | 1 | -54/+19 |
* | Microsoft Windows hates BIO_get_accept_socket in portable. Fix it to | beck | 2017-04-30 | 1 | -115/+35 |
* | Send the function codes from the error functions to the bit bucket, | beck | 2017-01-29 | 1 | -19/+15 |
* | Delete completely useless crap and just use getaddrinfo. Fix man page | beck | 2016-12-20 | 1 | -44/+7 |
* | Move Windows OS-specific functions to make porting easier. | bcook | 2014-12-03 | 1 | -24/+1 |
* | We're not supporting 16-bit Windows, remove cast. | bcook | 2014-12-03 | 1 | -3/+2 |
* | normalize set/getsockopt usage. | bcook | 2014-11-26 | 1 | -3/+2 |
* | The return value on success of fcntl(F_SETFL) is not actually specified, | bcook | 2014-10-13 | 1 | -3/+3 |
* | Use O_NONBLOCK over FIONBIO. | bcook | 2014-10-13 | 1 | -2/+8 |
* | do not need a variable to track locking, since all code paths have it | deraadt | 2014-07-16 | 1 | -5/+2 |
* | The bell tolls for BUF_strdup - Start the migration to using | beck | 2014-07-13 | 1 | -2/+2 |
* | Only import cryptlib.h in the four source files that actually need it. | jsing | 2014-07-11 | 1 | -3/+3 |
* | Simplify realloc() usage; ok tedu@ | miod | 2014-07-10 | 1 | -15/+6 |
* | Stop including standard headers via cryptlib.h - pull in the headers that | jsing | 2014-07-10 | 1 | -1/+2 |
* | replace getservbyname_r with getaddrinfo for portability | bcook | 2014-07-10 | 1 | -6/+11 |
* | include <limits.h> for LONG_MIN/LONG_MAX. | bcook | 2014-07-09 | 1 | -2/+2 |
* | add <sys/filio.h> header for FIONBIO | bcook | 2014-07-09 | 1 | -1/+2 |
* | Pretty much everything has SO_REUSEADDR - nuke the #ifdefs. | jsing | 2014-07-08 | 1 | -5/+1 |
* | We have EAI_FAMILY - remove the #ifdefs. | jsing | 2014-07-08 | 1 | -5/+1 |
* | More KNF. | jsing | 2014-07-08 | 1 | -11/+21 |
* | Avoid locking in BIO_get_port() by using getservbyname_r() instead of | jsing | 2014-07-08 | 1 | -31/+31 |
* | Simplify various BIO_sock_* fuctions - less code, better variable names, | jsing | 2014-07-08 | 1 | -27/+12 |
* | Replace 48 lines of code with a single inet_pton() call. The previous | jsing | 2014-06-24 | 1 | -48/+3 |
* | Actually make BIO_set_tcp_ndelay() work - TCP_NODELAY will not magically | jsing | 2014-06-24 | 1 | -16/+3 |
* | BIO_sock_init() no longer does anything, so stop calling it. | jsing | 2014-06-22 | 1 | -10/+1 |
* | Just use SOMAXCONN and IPPROTO_TCP, since we know we have them. | jsing | 2014-06-22 | 1 | -14/+4 |
* | In BIO_get_port(), use strol() with appropriate range checks rather than | jsing | 2014-06-22 | 1 | -32/+46 |
* | tags as requested by miod and tedu | deraadt | 2014-06-12 | 1 | -1/+1 |
* | Stop using DSO_global_lookup to reach getaddrinfo() and friends | deraadt | 2014-06-08 | 1 | -40/+3 |
* | more: no need for null check before free | deraadt | 2014-05-30 | 1 | -2/+1 |
* | Sort and group includes. | jsing | 2014-05-05 | 1 | -9/+8 |
* | Repair BIO_socket_nbio operation. | jsing | 2014-05-05 | 1 | -2/+3 |
* | Replace all use of ERR_add_error_data with ERR_asprintf_error_data. | beck | 2014-04-26 | 1 | -5/+5 |
* | The usual idiom to cope with systems not defining socklen_t is to add a | miod | 2014-04-23 | 1 | -35/+5 |
* | close socket in failure cases too | tedu | 2014-04-23 | 1 | -0/+3 |
* | if realloc failed, BIO_accept would leak memory and return NULL, causing | tedu | 2014-04-23 | 1 | -2/+11 |
* | We'll interpret a (void) cast on snprintf() to mean it's been verified that | guenther | 2014-04-19 | 1 | -2/+2 |
* | unifdef NO_SOCK | tedu | 2014-04-18 | 1 | -2/+0 |
* | Put the final pieces from e_os.h in the required places, and remove it. | deraadt | 2014-04-18 | 1 | -12/+1 |
* | unistd.h for protos where needed | deraadt | 2014-04-18 | 1 | -0/+1 |
* | more windows/netware leftovers | tedu | 2014-04-17 | 1 | -18/+3 |
* | delete if 0 code | tedu | 2014-04-17 | 1 | -28/+0 |
* | Mostly gut e_os.h: | deraadt | 2014-04-17 | 1 | -7/+4 |
* | Change library to use intrinsic memory allocation functions instead of | beck | 2014-04-17 | 1 | -4/+4 |
* | Revert unintended whitespace changes. | jsing | 2014-04-17 | 1 | -4/+4 |
* | > As I walk through the valley of the shadow of death | tedu | 2014-04-16 | 1 | -267/+2 |