changed the test() function to return type int

This commit is contained in:
Daniel Stenberg 2004-02-05 12:34:17 +00:00
Родитель a271cfb697
Коммит a5c4442ebf
11 изменённых файлов: 12 добавлений и 13 удалений

Просмотреть файл

@ -6,7 +6,7 @@ extern void curl_memdebug(const char *);
#endif #endif
/* test is provided in the test code file */ /* test is provided in the test code file */
CURLcode test(char *url); int test(char *url);
char *arg2=NULL; char *arg2=NULL;

Просмотреть файл

@ -1,6 +1,6 @@
#include "test.h" #include "test.h"
CURLcode test(char *URL) int test(char *URL)
{ {
CURLcode res; CURLcode res;
CURL *curl = curl_easy_init(); CURL *curl = curl_easy_init();

Просмотреть файл

@ -4,7 +4,7 @@
* Get a single URL without select(). * Get a single URL without select().
*/ */
CURLcode test(char *URL) int test(char *URL)
{ {
CURL *c; CURL *c;
CURLM *m; CURLM *m;

Просмотреть файл

@ -14,7 +14,7 @@
* auth info. * auth info.
*/ */
CURLcode test(char *URL) int test(char *URL)
{ {
CURL *c; CURL *c;
CURLM *m; CURLM *m;
@ -82,6 +82,6 @@ CURLcode test(char *URL)
curl_easy_cleanup(c); curl_easy_cleanup(c);
curl_multi_cleanup(m); curl_multi_cleanup(m);
return 0; return CURLE_OK;
} }

Просмотреть файл

@ -13,7 +13,7 @@
* Use multi interface to get document over proxy with bad port number. * Use multi interface to get document over proxy with bad port number.
* This caused the interface to "hang" in libcurl 7.10.2. * This caused the interface to "hang" in libcurl 7.10.2.
*/ */
CURLcode test(char *URL) int test(char *URL)
{ {
CURL *c; CURL *c;
CURLcode ret=CURLE_OK; CURLcode ret=CURLE_OK;

Просмотреть файл

@ -34,7 +34,7 @@
* Example based on source code provided by Erick Nuwendam. Thanks! * Example based on source code provided by Erick Nuwendam. Thanks!
*/ */
CURLcode test(char *URL) int test(char *URL)
{ {
CURL *curl; CURL *curl;
CURLcode res; CURLcode res;

Просмотреть файл

@ -127,7 +127,7 @@ char *suburl(char *base, int i)
/* test function */ /* test function */
CURLcode test(char *URL) int test(char *URL)
{ {
CURLcode res; CURLcode res;
CURLSHcode scode; CURLSHcode scode;

Просмотреть файл

@ -1,6 +1,6 @@
#include "test.h" #include "test.h"
CURLcode test(char *URL) int test(char *URL)
{ {
CURL* curls; CURL* curls;
CURLM* multi; CURLM* multi;

Просмотреть файл

@ -24,7 +24,7 @@ static size_t read_callback(void *ptr, size_t size, size_t nmemb, void *userp)
return -1; /* no more data left to deliver */ return -1; /* no more data left to deliver */
} }
CURLcode test(char *URL) int test(char *URL)
{ {
CURL *curl; CURL *curl;
CURLcode res=CURLE_OK; CURLcode res=CURLE_OK;

Просмотреть файл

@ -159,8 +159,7 @@ static CURLcode sslctxfun(CURL * curl, void * sslctx, void * parm)
return CURLE_OK ; return CURLE_OK ;
} }
int test(char *URL)
CURLcode test(char *URL)
{ {
CURLM* multi; CURLM* multi;
sslctxparm p; sslctxparm p;

Просмотреть файл

@ -32,7 +32,7 @@ static size_t read_callback(void *ptr, size_t size, size_t nmemb, void *userp)
return 0; /* no more data left to deliver */ return 0; /* no more data left to deliver */
} }
CURLcode test(char *URL) int test(char *URL)
{ {
CURL *curl; CURL *curl;
CURLcode res=CURLE_OK; CURLcode res=CURLE_OK;