libevent is an API for writing event driven systems. libevent is written in C and should compile on Linux, *BSD, Mac OS X, Solaris and Windows.
0
votes
1answer
15 views
how libevent detect that a socket is closed
if I add an event for a specific socket to event loop,
for example, a TCP connection socket.
then it may happen that the socket is closed,
then how will libevent act?
can it detect this?
thanks!
0
votes
1answer
40 views
libevent: is it allowed to free an event inside its callback function if the event is created by malloc
I need to create events using malloc, but I'm at a loss where to free them, I'm wondering
whether it is allowed to free an event inside its callback function, like:
struct event *pkt_ev = (struct ...
1
vote
1answer
46 views
libevent API: understanding the pointer parameters or return values
for the following libevent API:
void event_set(struct event *ev, int fd, short event, void (*cb)(int, short, void *), void *arg)
event_add(struct event *ev, const struct timeval *timeout);
struct ...
0
votes
1answer
35 views
error while loading shared libraries, installation misplaced `.so` files in /usr/lib
I'm using libevent in my source code, after compiling the program, I run it and I got the following error:
./my_program: error while loading shared libraries: libevent-1.4.so.2: cannot open shared
...
0
votes
1answer
35 views
ev_timer callback is called earlier than it should be
I have a problem with ev_timer of libev, please look at the code below:
static void timeout_cb(struct ev_loop *loop, ev_timer *timer, int revent) {
printf("got an timeout event, current time ...
0
votes
1answer
23 views
difference between libevent and libevent-dev
I am wondering as to what are the differences between libevent and libevent-dev.
So, I have installed libevent from source (stable version 2.0.21) - and I am not really able to find the sources for ...
-4
votes
0answers
54 views
Who can help me to write a C++ libevent usage demo , I really don't understand its workflow [closed]
Since I am a Java-based developer , But now I am required to use the C++ to implement a network services base on libevent . Who can write a demo to let me understand its framework and its workflow ? ...
0
votes
0answers
21 views
compile libev (dev) under CentOS
I was wondering if there were instructions somewhere on how to compile libev-dev on Linux (CentOS) 64 bit. I was not able to locate the dev package associated with libev nor any tutorials on its ...
0
votes
1answer
28 views
Libevent use too much CPU
Recently I write a simple example using libevent,
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <sys/types.h>
#include ...
1
vote
1answer
30 views
libevent kqueue doesn't work on fd returned from zmq_getsockopt()
ORIGINAL POST:
I'm writing a service in C programming using libevent and zmq.
Msg is pushed from python code to C service using PUSH-PULL pattern.
fd received from zmq socket:
void *receiver = ...
-2
votes
0answers
52 views
linux mint cannot install memcached because of libevent missing [closed]
I am using linux mint13.
Now I want to install memcached.
first I install libevent
tar zxvf libevent-2.0.21.tar.gz
cd libevent-2.0.21
./configure --prefix=/usr/local
make
make install
and i ...
1
vote
0answers
90 views
Two very similar pieces of c code, one works one does not work, why?
I have two different programs. Both should connect to another program and send a bit of text to it, and then get the same echoed back to them. When I run them one of them works fine (my echo server ...
0
votes
0answers
32 views
C++ do boost::message_queue generate events?
i'm looking for integrate boost::message_queue with the libevent even loop(used for looking after sockets for now).
do message_queue generate signals? they should be a sync method so they should, but ...
0
votes
0answers
85 views
How to reencode flash stream to MP4 or/and WebM inside server implementation?
Hi guys, lets start with this that I'm totally new in video streaming.
Currently I have to support one server implemented in C that work as mediator between stream producers and stream consumers. In ...
0
votes
0answers
23 views
Is it possible that install Event::Lib within cygwin?
I wrote a perl script under ubuntu.But now I need to build an exe file for windows users.
I did these steps:
install cygwin and all 'Devel' softwares.
run 'apt-cyg install libevent-devel --mirror ...
2
votes
1answer
28 views
What are my errors using libevent timout events?
I am trying to learn libevent for use in a future project. I am attempting to create a event that calls it's call back function each time it times out. All the call back function does is print ...
2
votes
0answers
71 views
Libevent writes to the socket only after second buffer_write
Libevent is great and I love it so far. However, on a echo server, the write only sends to the socket on a second write. My writing is from another thread, a pump thread that talks to a db and does ...
0
votes
2answers
40 views
Monitoring a set of directories and generating “events”, when new files appear - can libevent or libev do that?
I'm writing a program in PHP (don't ask), which needs to monitor a set of directories waiting for files to appear and processing newcomers.
Can libevent or libev (both have matching PHP-extensions) ...
0
votes
1answer
83 views
Windows cygwin gearman ./configure shows “configure: error: Unable to find libevent” error
I am trying to install gearman http://www.phpvs.net/2010/11/30/installing-gearman-and-gearmand-on-windows-with-cygwin/
I downloaded "libevent-2.0.21-stable.tar.gz" and extracted in cygwin's home/libs ...
0
votes
0answers
47 views
Libevent + evhttp priorities
I've been reading about event priorities here: http://www.wangafu.net/~nickm/libevent-book/Ref4_event.html and I'm wondering if something similar is available for evhttp?
For example, if I set up a ...
0
votes
1answer
35 views
libevent cannot read an open socket descriptor
recently, I have a small socket server program using libevent.
In summary, it does following job.
void read_function(int fd, short event, void* arg) {
printf("callback is called!\n");
// ...
1
vote
1answer
141 views
High-performance server using libEvent [closed]
I'm designing a high-performance server (not an HTTP server) and am considering my design options. The server should support a large number of incoming connections (in thousands), and to compile on ...
0
votes
1answer
88 views
Unable to install libevent-devel
I'm trying to install libevent-devel but it failed due to dependencies which shown below.
I tried also to install the dependencies needed by libevent-devel but it also failed as its needs the ...
0
votes
1answer
105 views
Using EVLOOP_NONBLOCK in libevent
In libevent I've added the following code:
while (run) {
event_base_loop(base, EVLOOP_NONBLOCK | EVLOOP_ONCE);
}
If I compare this to the following:
event_base_dispatch(base);
Are these two ...
0
votes
1answer
118 views
libevent evhttp and ipv6
I'm trying to use libevent and evhttp to get some data off a site. I've based my program on this.
It works perfectly with ipv4 but I would like to use it with ipv6 as well. I get the ip so there is no ...
0
votes
1answer
87 views
Installing Event::Lib in CitrusPerl install on Mac OS X 10.7
I'm working on a Perl project that requires Event::Lib. I'm on MacOS 10.7, and am running Citrus Perl instead of the system Perl. I installed libevent from source and it compiled fine. But, when I ...
0
votes
1answer
91 views
libevent: why does it depend on openssl?
About to compile libevent from sources, I just noticed that it seems to have a dependency on OpenSSL for encryption o_O.
This sounds like bloat.
What does a library that provides OS-independent ...
0
votes
0answers
71 views
evhttp_request_new() evhttp_request return null
I write a libevet program to get data from some web interface.
the code like this:
sometimes the struct evhttp_request *req of self->done is NULL.
I cannot find why of this .
response->connecttime ...
0
votes
1answer
52 views
Why is it evbuffer_add_printf will only accept static variables and not “dynamic” ones?
So far I have gotten my libev code to successfully return a static sting that says "OMP OMP", however when I write a function that returns a "static" string it never seems to work. (Sidenote: the idea ...
0
votes
1answer
97 views
Get libev remote ip address from this example code?
I'm trying to learn libevent/libev (in this case its libev) from the following link: http://www.ibm.com/developerworks/aix/library/au-libev/
I'm wondering how to find out what the remote ip address ...
-1
votes
1answer
140 views
Static compiled error with libevent in Mingw+MSYS
I have wrote a python expanded in winxp with mingw+msys compiled. It will call libevent lib. I hope that user don't install more library, so I want to compile it statically, but there are errors. The ...
0
votes
0answers
208 views
How to create tcp-client by libevent
Do You have link to example, how to create the client to echo-server?
I need to use libevent, bufervents.
This code have connect, but don't write to server:
int main() {
struct event_base ...
0
votes
1answer
67 views
set a deadline for each callback in an event-driven/ event-loop based program
In a typical ASIO or event-based programming library like libevent, is there a way to set a deadline for each callback?
I am worried about possible infinite loops within the callbacks. Is there a way ...
2
votes
1answer
586 views
libevent http client with request timeout
I am using libevent to get some stats of a web site in certain time intervals. I've based the program on this. The only thing I'm missing is a timeout on the request, preferably in subsecond accuracy.
...
0
votes
2answers
333 views
Installing gearman on windows 7 through cygwin and get “configure: error: Unable to find libevent”
I'm a newbie trying to install gearman on windows through cygwin using the tutorial here: http://www.phpvs.net/2010/11/30/installing-gearman-and-gearmand-on-windows-with-cygwin/
I need to install ...
0
votes
1answer
130 views
libevent: raise event on file change
I have the following code:
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <time.h>
#include <event.h>
void fd_cb(int fd,short event,void *arg){
...
0
votes
1answer
157 views
libevent: make timer persistent
I have the following code:
#include <stdio.h>
#include <sys/time.h>
#include <event.h>
void say_hello(int fd, short event, void *arg){
printf("Hello\n");
}
int main(int ...
0
votes
1answer
107 views
Raising and handling events in C
I am porting some C# code (classes mostly) to C. I have analysed the code and the port is definitely possible. One thing I am not sure of though, is how to handle (i.e. implement) raising events in C.
...
2
votes
2answers
266 views
How to compile memcached on Windows?
I am trying to get memcached running on Windows. I have downloaded memcached stable latest and compiled it using Mingw under Windows 7. Configure failed with error,
checking for libevent ...
0
votes
0answers
96 views
How to get peer address in event handler on error during bufferevent_socket_connect?
I didn't find a way to print peer's address in event handler on error during bufferevent_socket_connect. Can anybody help?
What I tried:
Using getpeername() on bufferevent_getfd() fails becouse ...
0
votes
2answers
224 views
Can epoll/libevent/libev work with UDT?
I'm building a high concurrency server which needs to handle tens of thousands of active sockets. I initially used epoll to build a event-based server and it worked well under moderate scale(several ...
1
vote
1answer
138 views
Libevent: how to temporarily disable, then re-enable EV_READ? (In C)
I am using libevent for handling data receipt on a set of ports. The behavior i would like to accomplish is this:
-Say i have a set of ports, 1001-1004
-Read in data on port, say 1001.
-As soon as ...
0
votes
1answer
78 views
How to modify the registed event in Libevent?
I use libevent like this,
client->m_event = event_new(listener->m_server->m_server_base, client->m_sockfd, EV_PERSIST, Client::ClientEventCallback, client);
event_add(client->m_event, ...
0
votes
0answers
75 views
libevent help to recv data?
I have libevent to manage my server, serving for hundred and thousands clients.
event_set(&g_server->ev_accept, g_server->listen_fd, EV_READ | EV_PERSIST,
conn_tcp_server_accept, (void *) ...
0
votes
1answer
100 views
Array of structs - Array has incomplete element type (in C)
This seems like an easy problem to fix, but i'm doing something wrong. I've been through all the similar threads and didn't find anything that solved my problem, so any help would be appreciated!
...
1
vote
1answer
153 views
TCP port event callbacks in C using libevent
To make a long story short, i am implementing a mix-net in C. To do this i'm creating several individual daemons which listen on a section of TCP ports (say 31001-31008), receive data on those ports ...
0
votes
0answers
60 views
libevent: unable to read entire data from buffer using evbuffer_remove
I m using evbuffer_remove to read data from a buffer. Here is the code
char *data = (char *) malloc(contentLength); //contentLenght =5mb
int bytesRead = evbuffer_remove(responseBuffer, data, ...
0
votes
0answers
63 views
libevent: getting response body
I m new to libevent and I'm looking for a way to get the contents of the response. The response in my case is a mp3 file sent from the server. I can access response headers using evhttp_find_header() ...
1
vote
1answer
83 views
what's the difference between pending and active event in Libevent?
I'm learning how to use Libevent.While I can't understand the difference between pending and active.In my opinion,when a event is added to a event_base and the event hasn't happened, then it's in ...
0
votes
1answer
23 views
method for getting correct system path on windows
I have made up a simple http server using libevent. The way the resource (folders in my case) are accessed is
http://serverAddress:port/path/to/resouce/
the path to resource is extracted using the ...





