HomeSort by relevance Sort by last modified time
    Searched refs:tcpbuf (Results 1 - 3 of 3) sorted by null

  /external/c-ares/
ares_send.c 62 query->tcpbuf = malloc(qlen + 2);
63 if (!query->tcpbuf)
73 free(query->tcpbuf);
87 query->tcpbuf[0] = (unsigned char)((qlen >> 8) & 0xff);
88 query->tcpbuf[1] = (unsigned char)(qlen & 0xff);
89 memcpy(query->tcpbuf + 2, qbuf, qlen);
93 query->qbuf = query->tcpbuf + 2;
ares_private.h 196 unsigned char *tcpbuf; member in struct:query
199 /* Arguments passed to ares_send() (qbuf points into tcpbuf) */
ares_process.c 753 * query's tcpbuf for as long as the query is alive. In the rare
759 sendreq->data = query->tcpbuf;
    [all...]

Completed in 939 milliseconds