[Libevent-users] Re: evhttp client/server example with https, IPv6, etc (was: evhttp client error handling)

2013-01-26 Thread Azat Khuzhin
If you want to bind to ipv6 and ipv4 you could call "evhttp_bind_socket_with_handle()" multiple times, it should work. But by some reason you just couldn't bind to ipv6, you can try to use exactly that version that I use - https://launchpad.net/~azat/+archive/libevent-unofficial What about example

[Libevent-users] evhttp client/server example with https, IPv6, etc (was: evhttp client error handling)

2013-01-26 Thread Patrick Pelletier
Azat Khuzhin wrote: It looks like that you don't have ipv6 support, maybe kernel module don't loaded. Try to test like this $ ls /proc/net/if_inet6 No, I definitely have IPv6 support. That is how this came up in the first place: "localhost" on my machine resolves to both "::1" and "127.0.0.

Re: [Libevent-users] evhttp client error handling

2013-01-26 Thread Azat Khuzhin
Hi Patrick, It looks like that you don't have ipv6 support, maybe kernel module don't loaded. Try to test like this $ ls /proc/net/if_inet6 Here is more info how to test ipv6 support in linux http://www.tldp.org/HOWTO/Linux+IPv6-HOWTO/systemcheck-kernel.html I clone you repository, apply you pat