Lines Matching refs:recvbuf
88 char recvbuf[HTTP_RECVLEN]; /*%< receive buffer */
378 #define LENGTHOK(s) (httpd->recvbuf - (s) < (int)httpd->recvlen)
379 #define BUFLENOK(s) (httpd->recvbuf - (s) < HTTP_RECVLEN)
392 httpd->recvbuf[httpd->recvlen] = 0;
398 s = strstr(httpd->recvbuf, "\r\n\r\n");
401 s = strstr(httpd->recvbuf, "\n\n");
411 if (strncmp(httpd->recvbuf, "GET ", 4) == 0) {
413 p = httpd->recvbuf + 4;
414 } else if (strncmp(httpd->recvbuf, "POST ", 5) == 0) {
416 p = httpd->recvbuf + 5;
585 r.base = (unsigned char *)httpd->recvbuf;
686 r.base = (unsigned char *)httpd->recvbuf + httpd->recvlen;
967 r.base = (unsigned char *)httpd->recvbuf;
989 httpd->recvbuf[0] = 0;