Searched refs:inbuf_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;
374 if (!(e = memchr(c->inbuf, '\n', c->inbuf_length)))
381 c->inbuf_length -= k + 1;
382 memmove(c->inbuf, e+1, c->inbuf_length);
391 if ((events & AVAHI_WATCH_IN) && c->inbuf_length < sizeof(c->inbuf)) {
394 if ((r = read(c->fd, c->inbuf + c->inbuf_length, sizeof(c->inbuf) - c->inbuf_length)) <= 0) {
401 c->inbuf_length += r;
402 assert(c->inbuf_length <
[all...]

Completed in 16 milliseconds