Lines Matching defs:tcpbuffer
757 * tcpbuffer is NULL when called from ns_client_sendraw() and
758 * length != 0. tcpbuffer != NULL when called from ns_client_send()
764 isc_buffer_t *tcpbuffer, isc_uint32_t length,
772 INSIST((tcpbuffer == NULL && length != 0) ||
773 (tcpbuffer != NULL && length == 0));
787 if (tcpbuffer != NULL) {
788 isc_buffer_init(tcpbuffer, data, TCP_BUFFER_SIZE);
917 isc_buffer_t tcpbuffer;
949 result = client_allocsendbuf(client, &buffer, &tcpbuffer, 0,
1017 isc_buffer_putuint16(&tcpbuffer, (isc_uint16_t) r.length);
1018 isc_buffer_add(&tcpbuffer, r.length);
1019 result = client_sendpkg(client, &tcpbuffer);