1 |
siliconforks |
114 |
/* |
2 |
|
|
http-client-close-after-request.c - HTTP client that closes connection after sending request |
3 |
siliconforks |
505 |
Copyright (C) 2008, 2009, 2010 siliconforks.com |
4 |
siliconforks |
114 |
|
5 |
|
|
This program is free software; you can redistribute it and/or modify |
6 |
|
|
it under the terms of the GNU General Public License as published by |
7 |
|
|
the Free Software Foundation; either version 2 of the License, or |
8 |
|
|
(at your option) any later version. |
9 |
|
|
|
10 |
|
|
This program is distributed in the hope that it will be useful, |
11 |
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 |
|
|
GNU General Public License for more details. |
14 |
|
|
|
15 |
|
|
You should have received a copy of the GNU General Public License along |
16 |
|
|
with this program; if not, write to the Free Software Foundation, Inc., |
17 |
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
18 |
|
|
*/ |
19 |
|
|
|
20 |
siliconforks |
126 |
#include <config.h> |
21 |
|
|
|
22 |
siliconforks |
114 |
#include <assert.h> |
23 |
|
|
#include <stdio.h> |
24 |
|
|
#include <string.h> |
25 |
|
|
|
26 |
|
|
#include "http-server.h" |
27 |
|
|
|
28 |
siliconforks |
610 |
int main(int argc, const char ** argv) { |
29 |
siliconforks |
126 |
#ifdef __MINGW32__ |
30 |
|
|
WSADATA data; |
31 |
|
|
if (WSAStartup(MAKEWORD(1, 1), &data) != 0) { |
32 |
|
|
return 1; |
33 |
|
|
} |
34 |
|
|
#endif |
35 |
|
|
|
36 |
siliconforks |
610 |
assert(argc == 2); |
37 |
|
|
uint16_t port = (uint16_t) atoi(argv[1]); |
38 |
|
|
|
39 |
siliconforks |
114 |
int result; |
40 |
|
|
|
41 |
|
|
struct sockaddr_in a; |
42 |
|
|
a.sin_family = AF_INET; |
43 |
siliconforks |
610 |
a.sin_port = htons(port); |
44 |
siliconforks |
114 |
a.sin_addr.s_addr = htonl(INADDR_LOOPBACK); |
45 |
|
|
|
46 |
siliconforks |
126 |
SOCKET s = socket(PF_INET, SOCK_STREAM, 0); |
47 |
|
|
assert(s != INVALID_SOCKET); |
48 |
siliconforks |
114 |
|
49 |
|
|
result = connect(s, (struct sockaddr *) &a, sizeof(a)); |
50 |
|
|
assert(result == 0); |
51 |
|
|
|
52 |
|
|
/* send request */ |
53 |
siliconforks |
610 |
char * message = "GET / HTTP/1.0\r\nConnection: close\r\n\r\n"; |
54 |
siliconforks |
114 |
size_t message_length = strlen(message); |
55 |
|
|
ssize_t bytes_sent = send(s, message, message_length, 0); |
56 |
|
|
assert(bytes_sent == (ssize_t) message_length); |
57 |
|
|
|
58 |
siliconforks |
126 |
closesocket(s); |
59 |
siliconforks |
114 |
return 0; |
60 |
|
|
} |