mirror of
https://github.com/curl/curl.git
synced 2026-07-22 21:17:16 +03:00
http_proxy: make Curl_connect_done() work for proxy disabled builds
... by making it an empty macro then.
Follow-up to f0b7099a10
Reported-by: Vincent Grande
Fixes #7995
Closes #7996
This commit is contained in:
parent
b89a4b5191
commit
2989b11377
1 changed files with 2 additions and 1 deletions
|
|
@ -39,6 +39,7 @@ CURLcode Curl_proxy_connect(struct Curl_easy *data, int sockindex);
|
|||
bool Curl_connect_complete(struct connectdata *conn);
|
||||
bool Curl_connect_ongoing(struct connectdata *conn);
|
||||
int Curl_connect_getsock(struct connectdata *conn);
|
||||
void Curl_connect_done(struct Curl_easy *data);
|
||||
|
||||
#else
|
||||
#define Curl_proxyCONNECT(x,y,z,w) CURLE_NOT_BUILT_IN
|
||||
|
|
@ -46,10 +47,10 @@ int Curl_connect_getsock(struct connectdata *conn);
|
|||
#define Curl_connect_complete(x) CURLE_OK
|
||||
#define Curl_connect_ongoing(x) FALSE
|
||||
#define Curl_connect_getsock(x) 0
|
||||
#define Curl_connect_done(x)
|
||||
#endif
|
||||
|
||||
void Curl_connect_free(struct Curl_easy *data);
|
||||
void Curl_connect_done(struct Curl_easy *data);
|
||||
|
||||
/* struct for HTTP CONNECT state data */
|
||||
struct http_connect_state {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue