Lines Matching defs:line
163 static CURLcode altsvc_add(struct altsvcinfo *asi, char *line)
165 /* Example line:
179 rc = sscanf(line,
202 * Load alt-svc entries from the given file. The text based line-oriented file
212 char *line = NULL;
224 line = malloc(MAX_ALTSVC_LINE);
225 if(!line)
227 while(Curl_get_line(line, MAX_ALTSVC_LINE, fp)) {
228 char *lineptr = line;
237 free(line); /* free the line buffer */
244 free(line);
250 * Write this single altsvc entry to a single output line
643 this is the first entry of the line. */