On Sun, Apr 26, 2009 at 3:48 AM, Diem <di...@inbox.ru> wrote:
> I want so my browser get data partialy, but i can see result only after 
> ending of a cycle.
> How i want to made this ?

The problem is that your callback blocks.   You need to return control
to the event loop so that libevent can send out partial data.   Right
now, you send all your data, and then return to the event loop, as a
result all your data will be send out in one go.

Niels.
_______________________________________________
Libevent-users mailing list
Libevent-users@monkey.org
http://monkeymail.org/mailman/listinfo/libevent-users

Reply via email to