Hello!
I'm using event2 libs and i want to know if it is possible to put new event on
the top of the queue.
For example, i have next events queue:
ev1 -> ev2 -> ev3
While processing ev1 an error occured. Now i want to create new event(err_ev)
that will close all application's modules and i
Thank you, exactly what i need ! :)
***
To unsubscribe, send an e-mail to majord...@freehaven.net with
unsubscribe libevent-usersin the body.
Hello! My send function is next:
static void WriteNeighbor(Neighbor *neighbor, unsigned int size, uint8_t *data)
{
uint8_t pre_data[4];
Utils::put_be32(pre_data, command);
if (bufferevent_write(neighbor->bev,pre_data,4)==-1)
ErrorFactory::Die(Errors::Write
Начало переадресованного сообщения:
> От: Gordiychuck Oleg
> Дата: 7 лютого 2011 р. 00:04:43 GMT+02:00
> Кому: majord...@freehaven.net
> Тема: Read callback problem
>
> Hello!
>
> I have a simple network application with simple protocol over TCP\IP. The
> ma