Home | History | Annotate | Download | only in proxy

Lines Matching full:line

271                                  const char*   line )
274 return http_header_append( r->headers->last, line );
419 /* read the first line of a given HTTP request. returns -1/0/+1 */
428 /* now parse the first line to see if we can handle it */
429 char* line = root->str->s;
433 char* p = line;
438 root->name, line);
444 root->name, line);
450 root->name, line);
476 char* line = stralloc_cstr( root->str );
477 char* p = line;
485 root->name, line);
491 root->name, line);
513 char* line;
521 line = str->s;
523 if (line[0] == 0) {
524 /* an empty line means the end of headers */
530 if (line[0] == ' ' || line[0] == '\t') {
531 ret = http_request_add_to_last_header( conn->request, line );
537 value = line;
540 PROXY_LOG("%s: can't parse header '%s'", root->name, line);
739 char* line = str->s;
743 length = strtoll(line, &end, 16);
744 if (line[0] == ' ' || (end[0] != '\0' && end[0] != ';')) {
746 root->name, line);
988 PROXY_LOG("%s: request first line ok", root->name);
1044 PROXY_LOG("%s: reply first line ok", root->name);