Home | History | Annotate | Download | only in libtest

Lines Matching refs:url

78   const char *url;
91 curl_easy_setopt(curl, CURLOPT_URL, u->url);
103 int test(char *URL)
109 struct initurl url[NUM_THREADS];
122 url[i].url = URL;
123 url[i].share = share;
124 url[i].threadno = i;
125 error = pthread_create(&tid[i], NULL, run_thread, &url[i]);
129 fprintf(stderr, "Thread %d, gets %s\n", i, URL);
146 int test(char *URL)
148 (void)URL;