2006-10-25 05:20:44 -04:00
|
|
|
/*****************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2003-01-08 04:37:35 -05:00
|
|
|
#include "test.h"
|
2002-12-12 07:11:16 -05:00
|
|
|
|
2003-07-04 12:37:16 -04:00
|
|
|
#ifdef CURLDEBUG
|
2002-12-12 08:40:16 -05:00
|
|
|
/* provide a proto for this debug function */
|
|
|
|
extern void curl_memdebug(const char *);
|
2004-05-14 04:40:33 -04:00
|
|
|
extern void curl_memlimit(int);
|
2002-12-12 08:40:16 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* test is provided in the test code file */
|
2004-02-05 07:34:17 -05:00
|
|
|
int test(char *url);
|
2002-12-12 08:40:16 -05:00
|
|
|
|
2006-09-10 15:01:04 -04:00
|
|
|
int select_test (int num_fds, fd_set *rd, fd_set *wr, fd_set *exc,
|
|
|
|
struct timeval *tv)
|
|
|
|
{
|
2006-10-18 17:05:40 -04:00
|
|
|
#ifdef USE_WINSOCK
|
2006-09-10 15:01:04 -04:00
|
|
|
/* Winsock doesn't like no socket set in 'rd', 'wr' or 'exc'. This is
|
|
|
|
* case when 'num_fds <= 0. So sleep.
|
|
|
|
*/
|
|
|
|
if (num_fds <= 0) {
|
|
|
|
Sleep(1000*tv->tv_sec + tv->tv_usec/1000);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return select(num_fds, rd, wr, exc, tv);
|
|
|
|
}
|
|
|
|
|
2002-12-13 11:22:57 -05:00
|
|
|
char *arg2=NULL;
|
|
|
|
|
2002-12-12 07:11:16 -05:00
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2002-12-12 08:40:16 -05:00
|
|
|
char *URL;
|
2004-05-14 04:40:33 -04:00
|
|
|
|
|
|
|
#ifdef CURLDEBUG
|
|
|
|
/* this sends all memory debug messages to a logfile named memdump */
|
|
|
|
char *env = curl_getenv("CURL_MEMDEBUG");
|
|
|
|
if(env) {
|
2005-01-27 17:40:56 -05:00
|
|
|
/* use the value as file name */
|
|
|
|
char *s = strdup(env);
|
2004-05-14 04:40:33 -04:00
|
|
|
curl_free(env);
|
2005-01-27 17:40:56 -05:00
|
|
|
curl_memdebug(s);
|
|
|
|
free(s);
|
|
|
|
/* this weird strdup() and stuff here is to make the curl_free() get
|
|
|
|
called before the memdebug() as otherwise the memdebug tracing will
|
|
|
|
with tracing a free() without an alloc! */
|
2004-05-14 04:40:33 -04:00
|
|
|
}
|
|
|
|
/* this enables the fail-on-alloc-number-N functionality */
|
|
|
|
env = curl_getenv("CURL_MEMLIMIT");
|
|
|
|
if(env) {
|
|
|
|
curl_memlimit(atoi(env));
|
|
|
|
curl_free(env);
|
|
|
|
}
|
|
|
|
#endif
|
2002-12-12 07:11:16 -05:00
|
|
|
if(argc< 2 ) {
|
|
|
|
fprintf(stderr, "Pass URL as argument please\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2002-12-13 11:22:57 -05:00
|
|
|
if(argc>2)
|
|
|
|
arg2=argv[2];
|
|
|
|
|
2002-12-12 08:40:16 -05:00
|
|
|
URL = argv[1]; /* provide this to the rest */
|
|
|
|
|
|
|
|
fprintf(stderr, "URL: %s\n", URL);
|
2002-12-12 07:11:16 -05:00
|
|
|
|
2002-12-12 08:40:16 -05:00
|
|
|
return test(URL);
|
|
|
|
}
|