[openssl-dev] [openssl.org #2047] [PATCH][Beta3] Fix IPv6 handling in BIO_get_accept_socket()

2016-02-18 Thread Rich Salz via RT
fixed in master. Rich Salz, OpenSSL dev team; rs...@openssl.org -- Ticket here: http://rt.openssl.org/Ticket/Display.html?id=2047 Please log in as guest with password guest if prompted -- openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

[openssl.org #2047] [PATCH][Beta3] Fix IPv6 handling in BIO_get_accept_socket()

2009-09-24 Thread Arkadiusz Miskiewicz via RT
I'm also working on IPv6 support (also for the openssl s_client and s_server apps). I use code like #if OPENSSL_USE_IPV6 struct sockaddr_storage server, client; #else struct sockaddr_in server, client; #endif This should be portable. It's portable but it makes huge mess in the code. Take a

[openssl.org #2047] [PATCH][Beta3] Fix IPv6 handling in BIO_get_accept_socket()

2009-09-24 Thread Arkadiusz Miskiewicz
I'm also working on IPv6 support (also for the openssl s_client and s_server apps). I use code like #if OPENSSL_USE_IPV6 struct sockaddr_storage server, client; #else struct sockaddr_in server, client; #endif This should be portable. It's portable but it makes huge mess in the code. Take a

Re: [openssl.org #2047] [PATCH][Beta3] Fix IPv6 handling in BIO_get_accept_socket()

2009-09-24 Thread Michael Tuexen via RT
Hi Arkadiusz, by looking at the OpenSSL code I think it supports some legacy platforms which have very limited support. So I prefer not to break them and this is done most easily by by not touching the code for platforms not defining OPENSSL_USE_IPV6. For OpenSSH thinks might be different, I do

Re: [openssl.org #2047] [PATCH][Beta3] Fix IPv6 handling in BIO_get_accept_socket()

2009-09-18 Thread Michael Tuexen via RT
I'm also working on IPv6 support (also for the openssl s_client and s_server apps). I use code like #if OPENSSL_USE_IPV6 struct sockaddr_storage server, client; #else struct sockaddr_in server, client; #endif This should be portable. Best regards Michael On Sep 18, 2009, at

Re: [openssl.org #2047] [PATCH][Beta3] Fix IPv6 handling in BIO_get_accept_socket()

2009-09-17 Thread David Lee
On Fri, Sep 18, 2009 at 4:40 AM, Stephen Henson via RT r...@openssl.org wrote: [openssl-...@openssl.org - Thu Sep 17 16:32:23 2009]: Hi, list I downloaded OpenSSL 1.0 beta3 and found a bug in the function BIO_get_accept_socket(), when dealing with an IPv6 address. The line below copies the

Re: [openssl.org #2047] [PATCH][Beta3] Fix IPv6 handling in BIO_get_accept_socket()

2009-09-17 Thread live4t...@gmail.com via RT
On Fri, Sep 18, 2009 at 4:40 AM, Stephen Henson via RT r...@openssl.org wrote: [openssl-...@openssl.org - Thu Sep 17 16:32:23 2009]: Hi, list I downloaded OpenSSL 1.0 beta3 and found a bug in the function BIO_get_accept_socket(), when dealing with an IPv6 address. The line below copies the