examples: use example.com in example URLs

This commit is contained in:
Daniel Stenberg
2010-10-05 15:00:19 +02:00
parent 6d272e53a2
commit 18e7b52e8e
27 changed files with 41 additions and 43 deletions

View File

@@ -51,8 +51,8 @@ int main(void)
curl = curl_easy_init();
if(curl) {
/* First set the URL that is about to receive our POST. */
curl_easy_setopt(curl, CURLOPT_URL,
"http://receivingsite.com.pooh/index.cgi");
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com/index.cgi");
/* Now specify we want to POST data */
curl_easy_setopt(curl, CURLOPT_POST, 1L);