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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/third-party/miniupnp/
H A Dminiwget.c76 unsigned int content_buf_used = 0; local
227 if((content_buf_used + bytestocopy) > content_buf_len)
229 if(content_length >= (int)(content_buf_used + bytestocopy)) {
232 content_buf_len = content_buf_used + bytestocopy;
237 memcpy(content_buf + content_buf_used, buf + i, bytestocopy);
238 content_buf_used += bytestocopy;
247 && (int)(content_buf_used + n) > content_length) {
249 n = content_length - content_buf_used;
251 if(content_buf_used + n > content_buf_len)
253 if(content_length >= (int)(content_buf_used
[all...]

Completed in 47 milliseconds