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
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)
Thanx Sashan for your answer. I did it in the way you pointed out, but the
application stops once the evtimer is on : segmentation fault.
Nick, this is how I did it :
1. create the bufferevent with bufferevent_socket_new()
2. set the callback with bufferevent_setcb()
3. enable the bufferevent f
On Tue, Jan 15, 2013 at 9:52 AM, wrote:
> It serms that this is not the way it should be done. The whole buffer
> event should be removed and created again, until the server starts to
> respond. Unfortunately this method causes a segmentation fault. I had no
> idea of how such a simple problem ca
On Mon, Jan 14, 2013 at 5:52 PM, wrote:
> It serms that this is not the way it should be done. The whole buffer event
> should be removed and created again, until the server starts to respond.
> Unfortunately this method causes a segmentation fault. I had no idea of how
> such a simple problem
able to find
an example.
Regards,
Steve.
- Mail d'origine -
De: s...@free.fr
À: libevent-users@seul.org
Envoyé: Sun, 13 Jan 2013 13:53:39 +0100 (CET)
Objet: [Libevent-users] libevent client tries to reconnect to a lost server
What I need : a libevent client which tries to
use getsocketopt to get socket error no or use tcpdump to check what
happened
2013/1/13
> What I need : a libevent client which tries to reconnect periodically
> after loosing connection with the server.
>
> To solve this problem I add evtimer that becomes active once the
> connection with the s
What I need : a libevent client which tries to reconnect periodically after
loosing connection with the server.
To solve this problem I add evtimer that becomes active once the connection
with the server is lost. The evtimer callback calls
bufferevent_socket_connect(), but this function returns
What I need : a libevent client which tries to reconnect periodically after
loosing connection with the server.
To solve this problem I add evtimer that becomes active once the connection
with the server is lost. The evtimer callback calls
bufferevent_socket_connect(), but this function returns
letely non-portable.
From: Haseeb Abdul Qadir
To: "libevent-us...@freehaven.net"
Sent: Monday, December 17, 2012 10:31 AM
Subject: [Libevent-users] libevent in Windows App Store app
Hi,
Has anyone managed to use libevent in a Windows App Store a
Hi,
Has anyone managed to use libevent in a Windows App Store app? From speaking to
Microsoft it looks like Windows App Store apps can use a subset of the Win32
apis. WinSock unfortunately is not in the allowed list of Win32 apis. Apps are
required to use the new Windows.Networking.Sockets api
From: owner-libevent-us...@freehaven.net
[mailto:owner-libevent-us...@freehaven.net] On Behalf Of Mark Ellzey
Sent: Monday, October 22, 2012 6:06 PM
> Post the resulting code somewhere.
I've posted the code here - http://pastebin.com/REca0BTq. I've modified the
original allow me to add multiple
2012/10/23 Mark Ellzey :
> On Mon, Oct 22, 2012 at 11:08:23PM +, John Dunn wrote:
>> I'm trying to modify the hiperfifo.c example included in libcurl
>> (http://curl.haxx.se/libcurl/c/hiperfifo.html ) to use libevent 2.0.20 and
>> had a few questions. I know the originator of this code is the
On Mon, Oct 22, 2012 at 11:08:23PM +, John Dunn wrote:
> I'm trying to modify the hiperfifo.c example included in libcurl
> (http://curl.haxx.se/libcurl/c/hiperfifo.html ) to use libevent 2.0.20 and
> had a few questions. I know the originator of this code is the libcurl people
> but I figur
I'm trying to modify the hiperfifo.c example included in libcurl
(http://curl.haxx.se/libcurl/c/hiperfifo.html ) to use libevent 2.0.20 and had
a few questions. I know the originator of this code is the libcurl people but I
figured this would be a better place to ask since the questions are more
Hi,
I just blindly pulled over libevent, did the usual configure && make && make
check and started to get errors.
...
> Running tests:
> EVPORT
> Skipping test
> KQUEUE
> Skipping test
> EPOLL
> Skipping test
> EPOLL (changelist)
> Skipping test
> DEVPOLL
> Skipping test
> POLL
> test-eof: OK
On Mon, Jun 25, 2012 at 5:21 PM, Julian Bui wrote:
> Hello libevent,
>
> I am writing to see if I could get clarification on wait conditions and
> their use with recursive locks.
>
> My first issue is understanding how a custom evthread_lock is supposed to be
> implemented. evthread_lock_callback
Hello libevent,
I am writing to see if I could get clarification on wait conditions and
their use with recursive locks.
My first issue is understanding how a custom evthread_lock is supposed to
be implemented. evthread_lock_callbacks::supported_locktypes()
documentations says "Note that RECURSIV
On Wed, May 30, 2012 at 09:36:07AM +0500, Shahid wrote:
> We have tried some use cases and found out that it is due to the fact that
> we are holding the requests to send the response when available. The default
> holding time is 60 seconds after that we send a TIMEOUT response.
>
> These kind of
Hi
We have developed a Comet Server using "libevent-2.0.19". It was working
fine on the LAN but when tried on the WAN it started to increase the file
handles actually (TCP/IP sockets).
After investigating, we have found out that it is not closing the sockets on
the server.
We have tried s
Hi libevent devs,
My company has been using libevent 1.4.14b and evhttp for a minimal
http interface for some daemon processes (a simple queue, a simple
database, etc). I was tracking down some memory issues and found that
HTTP/1.1 requests without the "Connection: close" header, or HTTP/1.0
reque
Have you accounted for the possibility of clients falling off the map / buffers
overflowing ?
Can you reduce the code to the simplest possible example that reliably
demonstrates the problem and post it somewhere ?
On 2012-05-08, at 7:48 AM, Shahid wrote:
> I have been using libevent in all m
On Tue, May 8, 2012 at 7:48 AM, Shahid wrote:
> I have been using libevent in all my linux networking projects due to its
> features and AIO handling.
>
>
>
> I have a situation here and need your help.
>
> I have developed a PUSH (Comet) server using longpolling over http. I have
> used "libevent
I have been using libevent in all my linux networking projects due to its
features and AIO handling.
I have a situation here and need your help.
I have developed a PUSH (Comet) server using longpolling over http. I have
used "libevent 2.0.14" for basic event handling and for http support.
Hi,
I am seeing the a random behavior with persistent http
connection. Any help on this would be appreciated.
The scenario:
1. Got a http server implemented using libevent in
C++
2. There is a http client using Java Script.
3. The Javascript creates an EventSource (Which int
2012/3/29 Savg He :
> yes, I put "# define int mode_t" modified "# define mode_t int", it
> compiled successfully, no errors.
Great! I have committed the fix to the git repository.
Many thanks for reporting this.
***
To unsubscr
yes, I put "# define int mode_t" modified "# define mode_t int", it
compiled successfully, no errors. Also, forgive my English, I use
google the translate.
在 2012年3月30日 上午3:18,Sebastian Hahn 写道:
>
> On Mar 28, 2012, at 5:36 PM, Nick Mathewson wrote:
>> 2012/3/28 Sebastian Hahn :
>>> +#define int
On Mar 28, 2012, at 5:36 PM, Nick Mathewson wrote:
> 2012/3/28 Sebastian Hahn :
>> +#define int mode_t
>> #endif
>>
>> int
>
> Surely that's reversed; did you mean "#define mode_t int" ?
I sure did. Thanks for spotting that -.-
**
2012/3/28 Savg He :
> add code "#define int mode_t",but ... :
>
Try "#define mode_t int" instead?
***
To unsubscribe, send an e-mail to majord...@freehaven.net with
unsubscribe libevent-usersin the body.
add code "#define int mode_t",but ... :
C:\Documents and Settings\qs\My Documents\Downloads\Compressed\libevent-2.0.18-s
table>nmake /f Makefile.nmake
Microsoft (R) Program Maintenance Utility Version 8.00.50727.762
Copyright (C) Microsoft Corporation. All rights reserved.
cl /IWIN32-Co
2012/3/28 Sebastian Hahn :
>
> On Mar 28, 2012, at 4:41 PM, Savg He wrote:
>
>> My build environment: win xp of sp3 + visual c + + 2005 command line:
>>
>>
>> C:\Documents and Settings\qs\My
>> Documents\Downloads\Compressed\libevent-2.0.18-s
>> table>nmake /f Makefile.nmake
>
> Can you see if thi
On Mar 28, 2012, at 4:41 PM, Savg He wrote:
> My build environment: win xp of sp3 + visual c + + 2005 command line:
>
>
> C:\Documents and Settings\qs\My
> Documents\Downloads\Compressed\libevent-2.0.18-s
> table>nmake /f Makefile.nmake
Can you see if this patch fixes the problem for you?
di
On Thu, Mar 1, 2012 at 7:58 PM, Henk Goosen wrote:
> Hi there,
>
> I am looking into using libevent for a high performance cross-platform
> networking application. From the documentation and searching around I get the
> feeling that IOCP is still not well supported and/or stable in libevent.
>
>
Hi there,
I am looking into using libevent for a high performance cross-platform
networking application. From the documentation and searching around I get the
feeling that IOCP is still not well supported and/or stable in libevent.
Is this accurate? Should I look elsewhere? Is IOCP support a hi
See attached for an experimental patch that adds a new flag EV_PARALLEL
for the ev_events field of 'struct event'. If this flag is turned on,
the callback will be invoked asynchronously using a threadpool. The
caller is responsible for ensuring that the callback function can safely
be executed
om"
To: libevent-us...@freehaven.net
Sent: Tuesday, November 8, 2011 12:09 PM
Subject: [Libevent-users] Libevent
Libevent This is an amazing opportunity that anyone can doxx
***
To unsubscribe, send an e-mail to maj
On Fri, Aug 12, 2011 at 11:28 PM, Mark Ellzey wrote:
> I have a hunch that nginx is sending some type of query that libevent
> can't parse. Can you paste the entire packet for the get request from
> nginx to your server?
>
> tcpdump -n -s0 -X, and just paste the full packet for the GET request.
>
On Fri, Aug 12, 2011 at 06:36:18PM +0300, about bus wrote:
> On Fri, Aug 12, 2011 at 4:57 PM, Leonid Evdokimov wrote:
>
> > What libevent version do you use?
> > Can you reproduce the issue with ab (apache benchmark) instead of nginx?
> >
> > --
> >
>
> Libevent from sources: libevent-2.0.12-sta
On Fri, Aug 12, 2011 at 4:57 PM, Leonid Evdokimov wrote:
> What libevent version do you use?
> Can you reproduce the issue with ab (apache benchmark) instead of nginx?
>
> --
>
Libevent from sources: libevent-2.0.12-stable
I did not tried ab, I've tried to use http_load tool instead of real use
On Fri, Aug 12, 2011 at 13:43, about bus wrote:
> On Fri, Aug 12, 2011 at 8:13 AM, Mark Ellzey wrote:
> I can't post source code. Maybe later I will make simple version of server,
> which can reproduce timeout errors.
What libevent version do you use?
Can you reproduce the issue with ab (apache
On Fri, Aug 12, 2011 at 1:14 PM, Jain, Deepak (GE Healthcare) <
deepakj...@ge.com> wrote:
> Try to use valgrind’s callgrind tool for investigating where the time has
> been use.
>
>
>
The 75 seconds were lost between network (tcpdump shows what packet with GET
query was successfully sent from ngin
t: Re: [Libevent-users] libevent http and lost requests
On Fri, Aug 12, 2011 at 8:13 AM, Mark Ellzey wrote:
Can you post the source? If not you can try ltrace/strace'ing your
server or enable event debugging by recompiling libevent with
-DUSE_DEBUG
I can't post source code. May
On Fri, Aug 12, 2011 at 8:13 AM, Mark Ellzey wrote:
>
> Can you post the source? If not you can try ltrace/strace'ing your
> server or enable event debugging by recompiling libevent with
> -DUSE_DEBUG
>
I can't post source code. Maybe later I will make simple version of server,
which can reprodu
On Thu, Aug 11, 2011 at 09:19:41PM +0300, about bus wrote:
> Hello!
>
> I have a simple my own libevent-based http server written on C, use evhttp.h
> functions.
> I use it like backend with nginx server (about ~2K requests per second).
> Sometimes in nginx error log appears error: "(60: Operation
Hello!
I have a simple my own libevent-based http server written on C, use evhttp.h
functions.
I use it like backend with nginx server (about ~2K requests per second).
Sometimes in nginx error log appears error: "(60: Operation timed out) while
reading response header from upstream"
Timeout value
Hi, William
Thanks for your quotation. It's really helpful and provide official
proof of Andrew's opinion. I'll check it out further.
Thanks for reply.
Harvey
2011/8/4 William Ahern
> On Wed, Aug 03, 2011 at 03:39:34PM +0800, zhihua che wrote:
> > Hi, everyone,
> >
> > I'm reading lib
Hi Andrew,
Thanks for your prompt. Moments ago, I wrote a client to open the .fifo
file and write data to it and finally drive the event-loop run!
I guess I must further my research into the kernel before I completely
understand how epoll/select etc cooperate with file descriptor:(
Thank
On Wed, Aug 03, 2011 at 03:39:34PM +0800, zhihua che wrote:
> Hi, everyone,
>
> I'm reading libevent-2.0 code and have made certain progress:). However,
> I'm still confused with some basic concepts like "ready" for reading or
> writing. In the context of sockets, I think I can imagine this "r
On Wed, Aug 3, 2011 at 15:57, zhihua che wrote:
> Hi, Adrian,
> Thanks for your reply. However, what you said makes me more confused:(
> You mean the mechanism behind libevent like epoll doesn't support
> regular file descriptor? I'm not sure whether you're right, but looking into
poll/se
Hi, Adrian,
Thanks for your reply. However, what you said makes me more confused:(
You mean the mechanism behind libevent like epoll doesn't support
regular file descriptor? I'm not sure whether you're right, but looking into
the application sample given by the libevent official website,
h
On Wed, Aug 3, 2011 at 11:39, zhihua che wrote:
> Imagine I was monitoring a local regular file descriptor. I can't figure out
> what actions or
> conditions can cause the descriptor readable or writable.
You probably want to look at AIO: man 3 aio_read
Beware, this interface may have unexpected
That's because it doesn't work that way for file backed file descriptors.
There's no way to know a file is or isn't ready for writing, unless you had
some way of defining (say) how much data is in the write buffer for that FD.
Linux/FreeBSD at least don't supply this to you.
Similarly, there's no
Hi, everyone,
I'm reading libevent-2.0 code and have made certain progress:). However,
I'm still confused with some basic concepts like "ready" for reading or
writing. In the context of sockets, I think I can imagine this "ready"
situation: the socket is ready for reading when the receiving bu
On Tue, Jul 12, 2011 at 12:20:16AM -0400, Nick Mathewson wrote:
> On Mon, Jul 11, 2011 at 2:40 PM, Mark Ellzey wrote:
> Looks like a good start; see the comments on your pull request.
Updated per request.
***
To unsubscribe, s
On Mon, Jul 11, 2011 at 2:40 PM, Mark Ellzey wrote:
> Nick,
>
> Are the github repo's out of sync? I can't seem to find the most recent
> branch, libevent/master libevent/patches-2.0, nmathewson/* all seem to
> be out of sync.
Yeah. The canonical location for master/patches-2.0 is still
sourcefo
Nick,
Are the github repo's out of sync? I can't seem to find the most recent
branch, libevent/master libevent/patches-2.0, nmathewson/* all seem to
be out of sync.
In any case, patch for the global locks issue attached.
On Mon, Jul 11, 2011 at 08:10:02PM +0200, Andrei Chirila wrote:
> Hi Mark
Hi Mark,
Thank you for your interest in this issue.
Best regards,
Andrei
On Mon, Jul 11, 2011 at 7:33 PM, Mark Ellzey wrote:
> Yeah I see it now - not a huge issue but I will submit a patch here
> soon.
>
> ***
> To unsubscrib
Yeah I see it now - not a huge issue but I will submit a patch here
soon.
***
To unsubscribe, send an e-mail to majord...@freehaven.net with
unsubscribe libevent-usersin the body.
Hi Mark,
I tried the following:
./configure --disable-debug-mode
make clean all
copy my libs to the right places and compile test_event.c
This is the result:
$ valgrind --leak-check=full --show-reachable=yes ./test_event.exe
==28671== Memcheck, a memory error detector
==28671== Copyright (C) 20
int
event_global_setup_locks_(const int enable_locks)
{
#ifndef _EVENT_DISABLE_DEBUG_MODE
EVTHREAD_SETUP_GLOBAL_LOCK(_event_debug_map_lock, 0);
#endif
is your issue. so yeah, --disable-debug-mode will fix that problem.
On Mon, Jul 11, 2011 at 11:26:28AM -0500, Mark Ellzey wrote:
> On Mon,
On Mon, Jul 11, 2011 at 06:06:22PM +0200, Andrei Chirila wrote:
> Hello,
>
> I just tried with the latest:
>
Try compiling with --disable-debug-mode
***
To unsubscribe, send an e-mail to majord...@freehaven.net with
unsubscribe
It's no big issue, I was just wondering if this was in my usage or it's
generic libevent.
I have some programs which get tested under valgrind, and valgrind complains
about libevent, so maybe a global event_library_cleanup() would be enough. I
don't have enough knowledge of the internals, but if a
Ah, this is a global lock.
Unfortunately there doesn't seem to be a way to free that, is it a big
issue? this is small, one time allocat, and handled by dtor's.
***
To unsubscribe, send an e-mail to majord...@freehaven.net with
Hello,
I just tried with the latest:
$ git describe
release-2.0.12-stable-162-g7d08a28
Valgrind still reports memory leaks:
$ valgrind --leak-check=full --show-reachable=yes ./test_event.exe
==2705== Memcheck, a memory error detector
==2705== Copyright (C) 2002-2010, and GNU GPL'd, by Julian Se
On Mon, Jul 11, 2011 at 10:55:16AM -0500, Mark Ellzey wrote:
> On Mon, Jul 11, 2011 at 10:35:46AM +0200, Andrei Chirila wrote:
> > Hello,
> >
> > I'm using libevent in some programs and I came across a memory leak in
> > libevent. I'm wondering if I'm the one doing something wrong or it's really
>
Hello,
Thank you for your interest.
$ git describe
release-2.0.12-stable-125-g3312403
Andrei
On Mon, Jul 11, 2011 at 5:55 PM, Mark Ellzey wrote:
> On Mon, Jul 11, 2011 at 10:35:46AM +0200, Andrei Chirila wrote:
> > Hello,
> >
> > I'm using libevent in some programs and I came across a memory
On Mon, Jul 11, 2011 at 10:35:46AM +0200, Andrei Chirila wrote:
> Hello,
>
> I'm using libevent in some programs and I came across a memory leak in
> libevent. I'm wondering if I'm the one doing something wrong or it's really
> something in libevent.
>
What version are you using? I just browsed
Hello,
I'm using libevent in some programs and I came across a memory leak in
libevent. I'm wondering if I'm the one doing something wrong or it's really
something in libevent.
Valgrind reports:
achirila@virtual-machine:~/src/tests$ valgrind --leak-check=full
--show-reachable=yes ./test_event.ex
On Sun, Jul 3, 2011 at 3:27 AM, Juan Pablo Fernandez
wrote:
> Thanks Nick.
>
> You know of any projects using buffevents + IOCP succesfully?
> I've read about memcached + libevent, but I don't think they use bufferevents.
Tor has some code that tries to do this, but we're still shaking out
some b
Thanks Nick.
You know of any projects using buffevents + IOCP succesfully?
I've read about memcached + libevent, but I don't think they use bufferevents.
/Juan
2011/7/3 Nick Mathewson :
> On Fri, Jul 1, 2011 at 11:26 AM, Juan Pablo Fernandez
> wrote:
>> Hi,
>>
>> I've been experimenting with l
On Sat, Jul 02, 2011, Nick Mathewson wrote:
> The select-based backend is still used for the event interface
> provided by event_add, event_del, etc. It turns out that you can't
> emulate that using IOCP, as far as I can tell.[*] If you want to use
> IOCP, you need to use bufferevents: the buffe
On Fri, Jul 1, 2011 at 11:26 AM, Juan Pablo Fernandez
wrote:
> Hi,
>
> I've been experimenting with libevent on windows. I want to use IOCP,
> worker threads filling a queue layer in a server application.
> Bufferevents is a nice fit! And I've written a small server using
> bufferevents. However,
Hi,
I've been experimenting with libevent on windows. I want to use IOCP,
worker threads filling a queue layer in a server application.
Bufferevents is a nice fit! And I've written a small server using
bufferevents. However, I'm confused reading the documentation,
saying:
1, It's experimental (o
Hi, all! Right now I am under a pile of patches that need help and
review. I have two problems here right now:
1. They are scattered all around. Some are github pull requests, some
are emails to the list, some are personal emails, some are sourceforge
patch tickets.
2. There are not enough peo
Hi,
I have a strange behaviour using libevent for long pooling.
I'd like to store a list of all the evhttp_request I receive for a specific
url, without sending an answer to the client (I'ts long pooling, so I keep
the connection open for x seconds).
The problem is that the very first request seem
Thank you Nick.
Sarita
On Mon, Feb 7, 2011 at 9:27 AM, Nick Mathewson wrote:
> On Fri, Feb 4, 2011 at 9:52 PM, Sarita Sarathy wrote:
>>
>> Hi,
>
>
> Hello, Sarita! The libevent-users mailing list isn't at monkey.org
> any more; see http://archives.seul.org/libevent/users/ for info on
> subscri
On Fri, Feb 4, 2011 at 9:52 PM, Sarita Sarathy wrote:
>
> Hi,
Hello, Sarita! The libevent-users mailing list isn't at monkey.org
any more; see http://archives.seul.org/libevent/users/ for info on
subscribing to the current location.
> We would like to use UDP connections asynchronously in Sola
Kevin wrote:
> On Sun, Jan 2, 2011 at 6:48 PM, Harlan Stenn wrote:
>
> > Kevin wrote:
> > > On Sun, Jan 2, 2011 at 5:54 AM, Harlan Stenn wrote:
> > >
> > > > A number of different packages will install foo-config in the PATH to
> > > > make it easy to figure out if the package installed and what
On Sun, Jan 2, 2011 at 6:48 PM, Harlan Stenn wrote:
> Kevin wrote:
> > On Sun, Jan 2, 2011 at 5:54 AM, Harlan Stenn wrote:
> >
> > > A number of different packages will install foo-config in the PATH to
> > > make it easy to figure out if the package installed and what options
> > > should be us
Kevin wrote:
> On Sun, Jan 2, 2011 at 5:54 AM, Harlan Stenn wrote:
>
> > A number of different packages will install foo-config in the PATH to
> > make it easy to figure out if the package installed and what options
> > should be used.
> >
> > Anyway, I was wondering if libevent could install som
On Sun, Jan 2, 2011 at 5:54 AM, Harlan Stenn wrote:
> A number of different packages will install foo-config in the PATH to
> make it easy to figure out if the package installed and what options
> should be used.
>
> Examples include:
>
> autoopts-config
> cups-config
> curl-config
> libgcryp
A number of different packages will install foo-config in the PATH to
make it easy to figure out if the package installed and what options
should be used.
Examples include:
autoopts-config
cups-config
curl-config
libgcrypt-config
libpng-config
Anyway, I was wondering if libevent could insta
On Tue, Dec 07, 2010 at 03:56:44PM -0700, Kevin Bowling wrote:
> On Tue, Dec 7, 2010 at 2:07 PM, William Ahern
> wrote:
> > That means that the pkg-config in one tree has no idea about the pkg-config
> > config in the other trees. I have to hack every dumb package that relies on
> > pkg-config in
On Tue, Dec 7, 2010 at 2:07 PM, William Ahern wrote:
> On Tue, Dec 07, 2010 at 02:03:18PM -0500, Nick Mathewson wrote:
> > On Mon, Dec 6, 2010 at 6:53 PM, Sanjeev Kulkarni
> wrote:
> > > Hey guys,
> > > I'm a relative newbee to libevent so apologies if this is already
> answered.
> > > How to con
On Tue, Dec 07, 2010 at 02:03:18PM -0500, Nick Mathewson wrote:
> On Mon, Dec 6, 2010 at 6:53 PM, Sanjeev Kulkarni
> wrote:
> > Hey guys,
> > I'm a relative newbee to libevent so apologies if this is already answered.
> > How to configure libevent to use a non-standard installation path of
> > op
On Mon, Dec 6, 2010 at 6:53 PM, Sanjeev Kulkarni wrote:
> Hey guys,
> I'm a relative newbee to libevent so apologies if this is already answered.
> How to configure libevent to use a non-standard installation path of
> openssl. Basically my project has openssl included and I want libevent to
> com
Hey guys,
I'm a relative newbee to libevent so apologies if this is already answered.
How to configure libevent to use a non-standard installation path of
openssl. Basically my project has openssl included and I want libevent to
compile/link against that copy and not the standard system openssl.
Th
I've uploaded doxygen of the current git master here,
http://mc.kev009.com/libevent/. It syncs up a bit better with Nick's book.
I'll try and keep it reasonably up to date with master.
Regards,
Kevin
I've been working on making gevent use libevent's getaddrinfo and
occasionally get the above message in one of the test cases. What
could trigger it? How can I avoid it?
I don't call evdns_getaddrinfo_cancel if the callback was already
executed, so I wonder how could I arrive at invalid request?
On Oct 26, 2010, at 8:48 PM, Nick Mathewson wrote:
On Mon, Oct 25, 2010 at 11:02 PM, bottig...@gmail.com
wrote:
I've compiled libevent on windows 7 32bit with Mingw successfully.
Unfortunately when I run a few test programs, some of them will
print:
[warn] evsig_init: socketpair: Successf
On Tue, Oct 26, 2010 at 6:48 PM, Nick Mathewson wrote:
> People more experienced than I am about Windows can probably weigh in
> on what the right thing is here.
I think the expectation was that each DLL that uses winsock
would call WSAStartup before using it, and WSACleanup
when done. That's sa
On Mon, Oct 25, 2010 at 11:02 PM, bottig...@gmail.com
wrote:
> I've compiled libevent on windows 7 32bit with Mingw successfully.
> Unfortunately when I run a few test programs, some of them will print:
>
> [warn] evsig_init: socketpair: Successful WSAStartup not yet performed
> [WSANOTINITIALISED
On Fri, Jul 30, 2010 at 9:23 AM, Anton Zem wrote:
> I found that libebvent's HTTP Server cannot work properly in pipelined mode.
> The problem is in code
> if (req->ntoread == 0) {
> bufferevent_disable(evcon->bufev, EV_READ);
> /* Completed content length */
> evhttp_co
I've compiled libevent on windows 7 32bit with Mingw successfully.
Unfortunately when I run a few test programs, some of them will print:
[warn] evsig_init: socketpair: Successful WSAStartup not yet performed
[WSANOTINITIALISED ]
[warn] evthread_make_base_notifiable: socketpair: Successful
WSAStar
Sorry about the typo - yes, it is indeed -ivf
On Sep 3, 2010, at 10:08 AM, Nick Mathewson wrote:
> On Fri, Sep 3, 2010 at 11:59 AM, Ralph Castain wrote:
>> Hi folks
>>
>> I've been working on integrating 2.0.6-rc into the Open MPI code base and
>> ran across an issue. You distribute an acloca
On Fri, Sep 3, 2010 at 11:59 AM, Ralph Castain wrote:
> Hi folks
>
> I've been working on integrating 2.0.6-rc into the Open MPI code base and ran
> across an issue. You distribute an aclocal.m4 that was generated by libtool
> 2.2.6b, and you don't whack it at the beginning of autogen.sh. Thus,
Hi folks
I've been working on integrating 2.0.6-rc into the Open MPI code base and ran
across an issue. You distribute an aclocal.m4 that was generated by libtool
2.2.6b, and you don't whack it at the beginning of autogen.sh. Thus, those of
us who have updated to libtool 2.2.10 get an error.
I
On Sun, Aug 1, 2010 at 3:01 PM, Michael Gale wrote:
> Hello,
> I am using the latest release of libevent-python and the latest release
> of libevent-1.4.
> After I am done writing data and close the socket I attempt to remove the
> write event callback from the event loop. If I do this the ser
Hello,
I am using the latest release of libevent-python and the latest release
of libevent-1.4.
After I am done writing data and close the socket I attempt to remove the
write event callback from the event loop. If I do this the server segfaults
between 500 and 600 connections.
If I do not a
I found that libebvent's HTTP Server cannot work properly in pipelined mode.
The problem is in code
if (req->ntoread == 0) {
bufferevent_disable(evcon->bufev, EV_READ);
/* Completed content length */
evhttp_connection_done(evcon);
return;
}
in pipeline mode
1 - 100 of 111 matches
Mail list logo