#ifndef CURL_DISABLE_HTTP
-static CURLcode readwrite_headers(struct SessionHandle *data,
- struct connectdata *conn,
- struct SingleRequest *k,
- ssize_t *nread,
- bool *stop_reading);
+static CURLcode readwrite_http_headers(struct SessionHandle *data,
+ struct connectdata *conn,
+ struct SingleRequest *k,
+ ssize_t *nread,
+ bool *stop_reading);
#endif /* CURL_DISABLE_HTTP */
/*
return CURLE_OK;
}
+#ifndef CURL_DISABLE_HTTP
/*
* checkhttpprefix()
*
#endif /* CURL_DOES_CONVERSIONS */
return rc;
}
+#endif /* CURL_DISABLE_HTTP */
/*
* Curl_readrewind() rewinds the read stream. This is typically used for HTTP
if(k->header) {
/* we are in parse-the-header-mode */
bool stop_reading = FALSE;
- result = readwrite_headers(data, conn, k, &nread, &stop_reading);
+ result = readwrite_http_headers(data, conn, k, &nread, &stop_reading);
if(result)
return result;
if(stop_reading)
#ifndef CURL_DISABLE_HTTP
/*
- * Read any header lines from the server and pass them to the client app.
+ * Read any HTTP header lines from the server and pass them to the client app.
*/
-static CURLcode readwrite_headers(struct SessionHandle *data,
- struct connectdata *conn,
- struct SingleRequest *k,
- ssize_t *nread,
- bool *stop_reading)
+static CURLcode readwrite_http_headers(struct SessionHandle *data,
+ struct connectdata *conn,
+ struct SingleRequest *k,
+ ssize_t *nread,
+ bool *stop_reading)
{
CURLcode result;