[openssl-dev] [openssl.org #2512] [PATCH] Fix for BIO_new_accept()

2016-02-01 Thread Rich Salz via RT
ipv6 support will be in openssl 1.1 -- Rich Salz, OpenSSL dev team; rs...@openssl.org ___ openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

[openssl.org #2512] [PATCH] Fix for BIO_new_accept()

2011-05-08 Thread Michael Tuexen via RT
The attached patch fixes 1.0.0-stable and 1.0.1-stable such that BIO_new_accept(8080) will bind an IPv4 or IPv6 socket, which depends on the system. stable-0.9.8 would use an IPv4 socket. BIO_new_accept(::8080) will bind an IPv6 socket. BIO_new_accept(*:8080) will bind an IPv4 socket. Best