Lines Matching refs:line
130 /* Return a pool-allocated NUL-terminated line, with CRLF stripped,
137 char *line;
144 "failed reading line from OCSP server");
148 rv = apr_brigade_pflatten(bbout, &line, &len, p);
151 "failed reading line from OCSP server");
161 if (line[len-1] != APR_ASCII_LF) {
163 "response header line too long from OCSP server");
167 line[len-1] = '\0';
168 if (len > 1 && line[len-2] == APR_ASCII_CR) {
169 line[len-2] = '\0';
172 return line;
187 char *line;
197 line = get_line(tmpbb, bb, c, p);
198 if (!line || strncmp(line, "HTTP/", 5)
199 || (line = ap_strchr(line, ' ')) == NULL
200 || (code = apr_atoi64(++line)) < 200 || code > 299) {
203 line ? line : "(none)");
211 while ((line = get_line(tmpbb, bb, c, p)) != NULL && line[0]
214 "OCSP response header: %s", line);
223 else if (!line) {
250 * line splitting). */