diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-08-15 06:54:09 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-08-15 06:54:09 +0000 |
commit | 6e22b74253ff77a0ca2964789d740701a97a073c (patch) | |
tree | c67cc434a69e49ffbbd17a31fe292a86aa925ac8 | |
parent | a547f3a21eb9aaaedca0de8db61d07e4db69a5a9 (diff) |
removed protos that were moved to url.h and the new getinfo.h
-rw-r--r-- | lib/urldata.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 09e2868aa..01cafb5b1 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -573,26 +573,5 @@ struct UrlData { #define LIBCURL_NAME "libcurl" #define LIBCURL_ID LIBCURL_NAME " " LIBCURL_VERSION " " SSL_ID -CURLcode Curl_getinfo(CURL *curl, CURLINFO info, ...); - -/* - * Here follows function prototypes from what we used to plan to call - * the "low level" interface. It is no longer prioritized and it is not likely - * to ever be supported to external users. - * - * I removed all the comments to them as well, as they were no longer accurate - * and they're not meant for "public use" anymore. - */ - -CURLcode Curl_open(CURL **curl); -CURLcode Curl_setopt(CURL *handle, CURLoption option, ...); -CURLcode Curl_close(CURL *curl); /* the opposite of curl_open() */ -CURLcode Curl_connect(struct UrlData *, - struct connectdata **, - bool allow_port); -CURLcode Curl_do(struct connectdata *); -CURLcode Curl_done(struct connectdata *); -CURLcode Curl_disconnect(struct connectdata *); - #endif |