[ create a new paste ] login | about

reel

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by reel:

C, pasted on Dec 4:
1
2
3
4
5
$ ./a.out 
(curl_test.c:16) curl init  ... OK
(curl_test.c:46) Downloading http://example.com  ... OK
(curl_test.c:16) curl init  ... OK
(curl_test.c:46) Downloading http://example.com  ... OK
...
view (19 lines)
Plain Text, pasted on Dec 4:
1
2
3
4
5
$ ./a.out yahoo.com
yahoo.com = 68.180.206.184 206.190.60.37 
yahoo.com = 206.190.60.37 68.180.206.184 
yahoo.com = 68.180.206.184 206.190.60.37 
yahoo.com = 206.190.60.37 68.180.206.184 
...
view (24 lines)
C, pasted on Dec 4:
1
2
3
4
5
#include <curl/curl.h>
#include <unistd.h>
#include <stdio.h>

#define USERAGENTSTRING "libcurl"
...
view (71 lines)
C, pasted on Dec 4:
1
2
3
4
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
...
view (30 lines)