Searched defs:crlf (Results 1 - 3 of 3) sorted by relevance

/httpd/modules/http/
H A Dhttp_filters.c997 char crlf[] = CRLF; local
1000 buflen = strlen(crlf);
1001 ap_xlate_proto_to_ascii(crlf, buflen);
1002 apr_brigade_write(bb, NULL, NULL, crlf, buflen);
/httpd/modules/proxy/
H A Dmod_proxy_ftp.c805 char *crlf; local
818 if ((crlf = strchr(message, '\r')) != NULL ||
819 (crlf = strchr(message, '\n')) != NULL)
820 *crlf = '\0';
829 if ((crlf = strchr(message, '\r')) != NULL ||
830 (crlf = strchr(message, '\n')) != NULL)
831 *crlf = '\0';
/httpd/modules/lua/
H A Dlua_request.c354 char *start = 0, *end = 0, *crlf = 0; local
372 crlf = strstr((char *) start, "\r\n\r\n");
373 if (!crlf) break;
374 end = ap_lua_binstrstr(crlf, (size - (crlf - data)), multipart, len);
378 vlen = end - crlf - 8;
380 memcpy(buffer, crlf + 4, vlen);

Completed in 842 milliseconds