diff options
author | Jim Fuller <jim@webcomposite.com> | 2018-07-13 15:17:19 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-09-05 14:30:48 +0200 |
commit | b004a174ea5efb3d6bdce83949b6c1eab994930b (patch) | |
tree | 9ae3263324557d98fa7412ed4fda0f50b3a6cc89 /lib/url.h | |
parent | c497472c8b519346fa82dd780f94454cf47886f0 (diff) | |
download | curl-b004a174ea5efb3d6bdce83949b6c1eab994930b.tar.gz |
tests: add unit tests for url.c
Approved-by: Daniel Gustafsson
Closes #2937
Diffstat (limited to 'lib/url.h')
-rw-r--r-- | lib/url.h | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -34,7 +34,7 @@ CURLcode Curl_init_do(struct Curl_easy *data, struct connectdata *conn); CURLcode Curl_open(struct Curl_easy **curl); CURLcode Curl_init_userdefined(struct Curl_easy *data); -CURLcode Curl_dupset(struct Curl_easy * dst, struct Curl_easy * src); + void Curl_freeset(struct Curl_easy * data); CURLcode Curl_close(struct Curl_easy *data); /* opposite of curl_open() */ CURLcode Curl_connect(struct Curl_easy *, struct connectdata **, @@ -57,9 +57,7 @@ int Curl_doing_getsock(struct connectdata *conn, CURLcode Curl_parse_login_details(const char *login, const size_t len, char **userptr, char **passwdptr, char **optionsptr); -bool Curl_isPipeliningEnabled(const struct Curl_easy *handle); -CURLcode Curl_addHandleToPipeline(struct Curl_easy *handle, - struct curl_llist *pipeline); + int Curl_removeHandleFromPipeline(struct Curl_easy *handle, struct curl_llist *pipeline); /* remove the specified connection from all (possible) pipelines and related @@ -67,7 +65,6 @@ int Curl_removeHandleFromPipeline(struct Curl_easy *handle, void Curl_getoff_all_pipelines(struct Curl_easy *data, struct connectdata *conn); -void Curl_close_connections(struct Curl_easy *data); #define CURL_DEFAULT_PROXY_PORT 1080 /* default proxy port unless specified */ #define CURL_DEFAULT_HTTPS_PROXY_PORT 443 /* default https proxy port unless |