Lines Matching defs:line
80 #define OHS_FIRSTLINE 1 /* First line of response being read */
166 * Create request line using |rctx| and |path| (or "/" in case |path| is NULL).
398 * Parse first HTTP response line. This should be like this: "HTTP/1.0 200 OK".
403 static int parse_http_line1(char *line, int *found_keep_alive)
408 if (!HAS_PREFIX(line, HTTP_PREFIX_VERSION))
411 *found_keep_alive = line[strlen(HTTP_PREFIX_VERSION)] > '0';
414 for (code = line; *code != '\0' && !ossl_isspace(*code); code++)
473 for (i = 0; i < 60 && line[i] != '\0'; i++)
474 if (!ossl_isprint(line[i]))
475 line[i] = ' ';
476 line[i] = '\0';
477 ERR_raise_data(ERR_LIB_HTTP, HTTP_R_HEADER_PARSE_ERROR, "content=%s", line);
631 /* Attempt to read a line in */
635 * there's a complete line in there before calling BIO_gets or we'll
662 /* First line */
730 /* Look for blank line indicating end of headers */
1366 * The first line is the HTTP response.
1371 /* the BIO may not block, so we must wait for the 1st line to come in */