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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna/
H A Dupnphttp.c950 h->res_buflen = snprintf(h->res_buf, h->res_buf_alloclen,
958 h->res_buflen += snprintf(h->res_buf + h->res_buflen,
959 h->res_buf_alloclen - h->res_buflen,
962 h->res_buflen += snprintf(h->res_buf + h->res_buflen,
963 h->res_buf_alloclen - h->res_buflen,
966 h->res_buflen += snprintf(h->res_buf + h->res_buflen,
967 h->res_buf_alloclen - h->res_buflen,
[all...]
H A Dupnphttp.h61 int res_buflen; member in struct:upnphttp
H A Dupnpsoap.c55 memcpy(h->res_buf + h->res_buflen, beforebody, sizeof(beforebody) - 1);
56 h->res_buflen += sizeof(beforebody) - 1;
58 memcpy(h->res_buf + h->res_buflen, body, bodylen);
59 h->res_buflen += bodylen;
61 memcpy(h->res_buf + h->res_buflen, afterbody, sizeof(afterbody) - 1);
62 h->res_buflen += sizeof(afterbody) - 1;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/
H A Dupnphttp.h105 int res_buflen; member in struct:upnphttp
H A Dupnphttp.c1184 h->res_buflen = res.off;
1185 if(h->res_buf_alloclen < (h->res_buflen + bodylen))
1187 h->res_buf = (char *)realloc(h->res_buf, (h->res_buflen + bodylen));
1188 h->res_buf_alloclen = h->res_buflen + bodylen;
1201 memcpy(h->res_buf + h->res_buflen, body, bodylen);
1202 h->res_buflen += bodylen;
1216 DPRINTF(E_DEBUG, L_HTTP, "HTTP RESPONSE: %.*s\n", h->res_buflen, h->res_buf);
1217 n = send(h->socket, h->res_buf, h->res_buflen, 0);
1222 else if(n < h->res_buflen)
1226 n, h->res_buflen);
[all...]
H A Dupnpsoap.c153 memcpy(h->res_buf + h->res_buflen, beforebody, sizeof(beforebody) - 1);
154 h->res_buflen += sizeof(beforebody) - 1;
156 memcpy(h->res_buf + h->res_buflen, body, bodylen);
157 h->res_buflen += bodylen;
159 memcpy(h->res_buf + h->res_buflen, afterbody, sizeof(afterbody) - 1);
160 h->res_buflen += sizeof(afterbody) - 1;

Completed in 88 milliseconds