Home | History | Annotate | Download | only in lib

Lines Matching refs:line_start

259       char *line_start;
262 line_start = ptr;
359 result = Curl_convert_from_network(data, line_start,
368 line_start, (size_t)perline, conn);
375 result = Curl_client_write(conn, writetype, line_start,
388 if(('\r' == line_start[0]) ||
389 ('\n' == line_start[0])) {
422 if(line_start[1] == '\n') {
425 line_start++;
431 r = Curl_httpchunk_read(conn, line_start+1,
467 letter = line_start[perline];
468 line_start[perline]=0; /* zero terminate the buffer */
469 if((checkprefix("WWW-Authenticate:", line_start) &&
471 (checkprefix("Proxy-authenticate:", line_start) &&
475 char *auth = Curl_copy_header_value(line_start);
486 else if(checkprefix("Content-Length:", line_start)) {
487 cl = curlx_strtoofft(line_start +
490 else if(Curl_compareheader(line_start,
493 else if(Curl_compareheader(line_start,
501 else if(Curl_compareheader(line_start,
504 else if(2 == sscanf(line_start, "HTTP/1.%d %d",
511 line_start[perline]= letter;
514 line_start = ptr+1; /* this skips the zero byte we wrote */