[Libevent-users] libevent & SCTP

2013-04-25 Thread Alexander Drozdov
Hello! Are there any plans or ideas to add extra support of SCTP protocol to libevent? I mean something like bufferevents but - message-oriented - with SCTP streams support - with support of other features described in rfc6458 - with DTLS support (as a filter)

Re: [Libevent-users] libevent & SCTP

2013-04-25 Thread Nick Mathewson
On Thu, Apr 25, 2013 at 5:22 AM, Alexander Drozdov wrote: > Hello! > > Are there any plans or ideas to add extra support of SCTP protocol to > libevent? Hi! I'd like to add a UDP-based bufferevent-like thing at some point; I believe there's a thread about that from a little while back. Adding a

Re: [Libevent-users] Could not use event_base_foreach_event

2013-04-25 Thread Nick Mathewson
On Thu, Apr 25, 2013 at 1:24 AM, Pritesh Acharya wrote: > I got symbol not found error on event_base_foreach_event. > Has it been dropped? No, but it's only in Libevent 2.1, not in Libevent 2.0. It sounds like maybe you're building with headers from Libevent 2.1, but linking against libevent 2.0

Re: [Libevent-users] Simple question about multithreading SSL bufferevents.

2013-04-25 Thread Nick Mathewson
On Tue, Mar 26, 2013 at 6:32 PM, John wrote: > Hello all, > > I am having significant issues with (near immediate) deadlock when trying to > send data out a single openssl bufferevent from two separate threads. FWIW, I can confirm that my current "21_deadlock_fix" branch makes your example code

Re: [Libevent-users] Simple question about multithreading SSL bufferevents.

2013-04-25 Thread John
Nick, I have made my code capable of running multiple sets of single-threaded SSL bufferevent+event_base (i.e. works with current libevent 2.0) as well as able to run fully multithreaded (breaks with current libevent 2.0) I will be happy to test the changes in my real softwarewhich would probab

Re: [Libevent-users] Simple question about multithreading SSL bufferevents.

2013-04-25 Thread Nick Mathewson
On Thu, Apr 25, 2013 at 5:23 PM, John wrote: > Nick, > > I have made my code capable of running multiple sets of single-threaded SSL > bufferevent+event_base (i.e. works with current libevent 2.0) as well as able > to run fully multithreaded (breaks with current libevent 2.0) I will be happy >