This kind of question should go to openssl-users@openssl.org, which is
why I only send the response there.

In message <[EMAIL PROTECTED]> on Thu, 5 May 2005 14:26:42 +0530, "Karthik 
Bodigere" <[EMAIL PROTECTED]> said:

Karthik.Bodigere> I am using OpenSSL library in our web application.
Karthik.Bodigere> But now i am making my web application to support
Karthik.Bodigere> IPV6. So is there any version of openSSL which
Karthik.Bodigere> supports IPV6.  If not suggest me the modifications
Karthik.Bodigere> which i have to carry out in giving IPV6 support to
Karthik.Bodigere> OpenSSL.

Right now, OpenSSL has no specific support for IPv6.  I've pondered
doing something about it, but have come around to yet.

Here are the options available for you:

 - you can construct your own BIO (there are plenty of examples in
   crypto/bio, looks for the bss_*.c files).
 - you can open the socket yourself, you can use the already available
   file descriptor BIO.
   See 'man BIO_s_fd'
 - you can open the socket yourself, then pass it to OpenSSL with the
   function SSL_set_fd().
   See 'man SSL_set_fd'.

I suspect the last choice is what you really want.

Cheers,
Richard

-----
Please consider sponsoring my work on free software.
See http://www.free.lp.se/sponsoring.html for details.

-- 
Richard Levitte                         [EMAIL PROTECTED]
                                        http://richard.levitte.org/

"When I became a man I put away childish things, including
 the fear of childishness and the desire to be very grown up."
                                                -- C.S. Lewis
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to