diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-01-03 15:01:22 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-01-03 15:01:22 +0000 |
commit | 8b6314ccfbe48bba2cd560812dd1841425f3bd79 (patch) | |
tree | 17ca2bf182593acbbc583d224e0af674e9fd8964 /lib/url.h | |
parent | 6de7dc5879b3605a180dafa05f792f132eafdcaa (diff) | |
download | curl-8b6314ccfbe48bba2cd560812dd1841425f3bd79.tar.gz |
merged the multi-dev branch back into MAIN again
Diffstat (limited to 'lib/url.h')
-rw-r--r-- | lib/url.h | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 2000, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 2001, Daniel Stenberg, <daniel@haxx.se>, et al. * * In order to be useful for every potential user, curl and libcurl are * dual-licensed under the MPL and the MIT/X-derivate licenses. @@ -29,11 +29,9 @@ CURLcode Curl_open(struct SessionHandle **curl); CURLcode Curl_setopt(struct SessionHandle *data, CURLoption option, ...); -CURLcode Curl_close(struct SessionHandle *data); /* the opposite of curl_open() */ -CURLcode Curl_connect(struct SessionHandle *, - struct connectdata **, - bool allow_port); -CURLcode Curl_do(struct connectdata *); +CURLcode Curl_close(struct SessionHandle *data); /* opposite of curl_open() */ +CURLcode Curl_connect(struct SessionHandle *, struct connectdata **); +CURLcode Curl_do(struct connectdata **); CURLcode Curl_done(struct connectdata *); CURLcode Curl_disconnect(struct connectdata *); |