mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
0d0d5e7ee3
connection.
22 lines
530 B
C
22 lines
530 B
C
#include "test.h"
|
|
|
|
int test(char *URL)
|
|
{
|
|
CURLcode res;
|
|
CURL *curl = curl_easy_init();
|
|
curl_easy_setopt(curl, CURLOPT_URL, URL);
|
|
curl_easy_setopt(curl, CURLOPT_USERPWD, "monster:underbed");
|
|
curl_easy_setopt(curl, CURLOPT_HEADER, TRUE);
|
|
curl_easy_setopt(curl, CURLOPT_VERBOSE, TRUE);
|
|
/* get first page */
|
|
res = curl_easy_perform(curl);
|
|
|
|
curl_easy_setopt(curl, CURLOPT_USERPWD, "anothermonster:inwardrobe");
|
|
/* get second page */
|
|
res = curl_easy_perform(curl);
|
|
|
|
curl_easy_cleanup(curl);
|
|
return (int)res;
|
|
}
|
|
|