Searched refs:outbuf_length (Results 1 - 1 of 1) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/avahi-0.6.25/avahi-daemon/
H A Dsimple-protocol.c83 size_t inbuf_length, outbuf_length; member in struct:Client
140 c->inbuf_length = c->outbuf_length = 0;
161 k = sizeof(c->outbuf) - c->outbuf_length;
164 memcpy(c->outbuf + c->outbuf_length, data, m);
165 c->outbuf_length += m;
407 if ((events & AVAHI_WATCH_OUT) && c->outbuf_length > 0) {
410 if ((r = write(c->fd, c->outbuf, c->outbuf_length)) < 0) {
416 assert((size_t) r <= c->outbuf_length);
417 c->outbuf_length -= r;
419 if (c->outbuf_length)
[all...]

Completed in 46 milliseconds