diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-07-23 18:51:22 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-07-23 18:51:22 +0000 |
commit | 5ecd56d9646c2adcc70c0369fb6196f62ecc62f4 (patch) | |
tree | a1dc6e5dac022fd7f09217815aa10c2afd0972ae /tests/libtest | |
parent | cc44fb1dc8b974d62638c50fb66c31ffa0554a18 (diff) |
Implemented only the parts of Patrick Monnerat's OS/400 patch that renamed
some few internal identifiers to avoid conflicts, which could be useful on
other platforms.
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib506.c | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/tests/libtest/lib506.c b/tests/libtest/lib506.c index 3a3f9e6b9..0a2a0d163 100644 --- a/tests/libtest/lib506.c +++ b/tests/libtest/lib506.c @@ -19,13 +19,6 @@ const char *HOSTHEADER = "Host: www.host.foo.com"; const char *JAR = "log/jar506"; #define THREADS 2 -void lock(CURL *handle, curl_lock_data data, curl_lock_access access, - void *useptr ); -void unlock(CURL *handle, curl_lock_data data, void *useptr ); -struct curl_slist *sethost(struct curl_slist *headers); -void *fire(void *ptr); -char *suburl(const char *base, int i); - /* struct containing data of a thread */ struct Tdata { CURLSH *share; @@ -38,7 +31,7 @@ struct userdata { }; /* lock callback */ -void lock(CURL *handle, curl_lock_data data, curl_lock_access access, +static void my_lock(CURL *handle, curl_lock_data data, curl_lock_access access, void *useptr ) { const char *what; @@ -66,7 +59,7 @@ void lock(CURL *handle, curl_lock_data data, curl_lock_access access, } /* unlock callback */ -void unlock(CURL *handle, curl_lock_data data, void *useptr ) +static void my_unlock(CURL *handle, curl_lock_data data, void *useptr ) { const char *what; struct userdata *user = (struct userdata *)useptr; @@ -91,7 +84,7 @@ void unlock(CURL *handle, curl_lock_data data, void *useptr ) /* build host entry */ -struct curl_slist *sethost(struct curl_slist *headers) +static struct curl_slist *sethost(struct curl_slist *headers) { (void)headers; return curl_slist_append(NULL, HOSTHEADER ); @@ -99,7 +92,7 @@ struct curl_slist *sethost(struct curl_slist *headers) /* the dummy thread function */ -void *fire(void *ptr) +static void *fire(void *ptr) { CURLcode code; struct curl_slist *headers; @@ -135,7 +128,7 @@ void *fire(void *ptr) /* build request url */ -char *suburl(const char *base, int i) +static char *suburl(const char *base, int i) { return curl_maprintf("%s000%c", base, 48+i); } @@ -173,11 +166,11 @@ int test(char *URL) if ( CURLSHE_OK == scode ) { printf( "CURLSHOPT_LOCKFUNC\n" ); - scode = curl_share_setopt( share, CURLSHOPT_LOCKFUNC, lock); + scode = curl_share_setopt( share, CURLSHOPT_LOCKFUNC, my_lock); } if ( CURLSHE_OK == scode ) { printf( "CURLSHOPT_UNLOCKFUNC\n" ); - scode = curl_share_setopt( share, CURLSHOPT_UNLOCKFUNC, unlock); + scode = curl_share_setopt( share, CURLSHOPT_UNLOCKFUNC, my_unlock); } if ( CURLSHE_OK == scode ) { printf( "CURLSHOPT_USERDATA\n" ); |