mirror of
https://github.com/curl/curl.git
synced 2026-08-24 21:53:37 +03:00
Fixed some minor mismatched types found by splint.
This commit is contained in:
parent
327c0d6b1c
commit
523767660c
10 changed files with 46 additions and 42 deletions
|
|
@ -24,14 +24,14 @@
|
|||
* $Id$
|
||||
***************************************************************************/
|
||||
#ifndef CURL_DISABLE_HTTP
|
||||
bool Curl_compareheader(char *headerline, /* line to check */
|
||||
bool Curl_compareheader(const char *headerline, /* line to check */
|
||||
const char *header, /* header keyword _with_ colon */
|
||||
const char *content); /* content string to find */
|
||||
|
||||
/* ftp can use this as well */
|
||||
CURLcode Curl_proxyCONNECT(struct connectdata *conn,
|
||||
int tunnelsocket,
|
||||
char *hostname, int remote_port);
|
||||
char *hostname, unsigned short remote_port);
|
||||
|
||||
/* protocol-specific functions set up to be called by the main engine */
|
||||
CURLcode Curl_http(struct connectdata *conn, bool *done);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue