-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.cpp
More file actions
321 lines (279 loc) · 9.57 KB
/
client.cpp
File metadata and controls
321 lines (279 loc) · 9.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
#include <iostream>
#include <cstring>
#include <string>
#include <sys/socket.h>
#include <netdb.h>
#include <unistd.h>
#include <cerrno>
#include <iostream>
#include <string>
#include <poll.h>
#include <netdb.h>
#include <fcntl.h>
#include <sstream>
#include <iomanip>
#include <unistd.h>
std::string toHex(int decimal) {
std::stringstream stream;
stream << std::hex << decimal; // Convert the decimal number to hexadecimal
return stream.str();
}
#include <sys/wait.h>
int main(void) {
//while (1) {
// if (fork() == 0) {
// break ;
// }
// int stat;
// while (waitpid(-1, &stat, WNOHANG) > 0);
// usleep(1000);
//}
const char *hostname = "localhost";
const int16_t port = 99;
//const char *hostname = "google.com";
//const int16_t port = 80;
const struct hostent *server = gethostbyname(hostname);
if (server == NULL) {
std::cerr << "Error: Server does not exist\n";
return (1);
}
int fd = socket(AF_INET, SOCK_STREAM, 0);
if (fd < 0) {
std::cerr << "Error: Socket error: " << strerror(errno) << '\n';
return (1);
}
struct sockaddr_in server_addr = {
#ifdef __APPLE__
.sin_len = 0,
#endif // __APPLE__
.sin_family = AF_INET,
.sin_port = htons(port),
.sin_addr = {0},
.sin_zero = {0},
};
memcpy(&server_addr.sin_addr.s_addr, server->h_addr, static_cast<size_t>(server->h_length));
char buffer[100000];
if (connect(fd, (struct sockaddr *)&server_addr, sizeof server_addr) < 0) {
std::cerr << "Error: connect error: " << strerror(errno) << '\n';
return (1);
}
std::string body = "posted by post, fine to delete";
std::string request =
std::string("POST /here_is_delete_allowed/delete_me.txt HTTP/1.1\r\n")
+ "Host: has_delete.com\r\n"
+ "Connection: close\r\n"
+ "Content-Length: " + std::to_string(body.size()) + "\r\n"
+ "\r\n"
+ body
;
if (send(fd, request.c_str(), request.length(), 0) < 0) {
std::cerr << "Error: send error: " << strerror(errno) << '\n';
return (1);
}
//if (send(fd, request.c_str(), request.length(), 0) < 0) {
// std::cerr << "Error: send error: " << strerror(errno) << '\n';
// return (1);
//}
std::cout << "requst send..\n";
ssize_t received;
/* why does this block if the server does not close the connection? */
while ((received = recv(fd, buffer, sizeof(buffer) - 1, 0)) > 0) {
buffer[received] = '\0';
std::cout << "received " << received << "bytes\n";
std::cout << buffer;
}
if (received < 0) {
perror("Error: Could not receive response");
return (1);
}
if (close(fd) < 0) {
perror("Error: Could not close socket");
return (1);
}
return (0);
}
/*
//Unchunked main
int main() {
const char *hostname = "localhost"; // Change to "google.com" for external requests
const int16_t port = 8080; // Change to 80 for standard HTTP
// Resolve hostname to IP address
struct hostent *server = gethostbyname(hostname);
if (!server) {
std::cerr << "Error: Server not found.\n";
return 1;
}
// Create a socket
int socket_fd = socket(AF_INET, SOCK_STREAM, 0);
if (socket_fd < 0) {
std::cerr << "Error: Unable to create socket: " << strerror(errno) << '\n';
return 1;
}
// Configure server address
struct sockaddr_in server_addr;{};
server_addr.sin_family = AF_INET;
server_addr.sin_port = htons(port);
std::memcpy(&server_addr.sin_addr.s_addr, server->h_addr, server->h_length);
// Connect to the server
if (connect(socket_fd, (struct sockaddr *)&server_addr, sizeof(server_addr)) < 0) {
std::cerr << "Error: Connection failed: " << strerror(errno) << '\n';
close(socket_fd);
return 1;
}
// Prepare the HTTP request
std::string hostnameReq = "example.com"; // Replace with your hostname
std::string body1 = "im string 1 \r\n";
std::string body2 = "im string 2 \r\n";
std::string body3 = "im string 3\r\n";
size_t contentLength = body1.length() + body2.length() + body3.length();
std::string headersPart1 =
"GET / HTTP/1.1\r\n"
"Host: " + hostnameReq + "\r\n";
std::string headersPart2 =
"Connection: close\r\n"
"Content-Length: " + std::to_string(contentLength) + "\r\n\r\n";
// Send the first part of headers
if (send(socket_fd, headersPart1.c_str(), headersPart1.length(), 0) < 0) {
std::cerr << "Error: Failed to send headers part 1: " << strerror(errno) << '\n';
close(socket_fd);
return 1;
}
sleep(2); // Simulate delay before sending the second part
// Send the second part of headers
if (send(socket_fd, headersPart2.c_str(), headersPart2.length(), 0) < 0) {
std::cerr << "Error: Failed to send headers part 2: " << strerror(errno) << '\n';
close(socket_fd);
return 1;
}
// Send body parts with delays
if (send(socket_fd, body1.c_str(), body1.length(), 0) < 0) {
std::cerr << "Error: Failed to send body1: " << strerror(errno) << '\n';
close(socket_fd);
return 1;
}
sleep(5);
if (send(socket_fd, body2.c_str(), body2.length(), 0) < 0) {
std::cerr << "Error: Failed to send body2: " << strerror(errno) << '\n';
close(socket_fd);
return 1;
}
sleep(5);
if (send(socket_fd, body3.c_str(), body3.length(), 0) < 0) {
std::cerr << "Error: Failed to send body3: " << strerror(errno) << '\n';
close(socket_fd);
return 1;
}
std::cout << "Request sent successfully in multiple parts.\n";
// Receive the response
char buffer[1024];
int bytes_received;
while ((bytes_received = recv(socket_fd, buffer, sizeof(buffer) - 1, 0)) > 0) {
buffer[bytes_received] = '\0'; // Null-terminate the received data
std::cout << buffer;
}
if (bytes_received < 0) {
std::cerr << "Error: Failed to receive response: " << strerror(errno) << '\n';
}
// Clean up
close(socket_fd);
return 0;
}
*/
/*
// Chunked main
int main() {
const char *hostname = "localhost"; // Change to "google.com" for external requests
const int16_t port = 8080; // Change to 80 for standard HTTP
// Resolve hostname to IP address
struct hostent *server = gethostbyname(hostname);
if (!server) {
std::cerr << "Error: Server not found.\n";
return 1;
}
// Create a socket
int socket_fd = socket(AF_INET, SOCK_STREAM, 0);
if (socket_fd < 0) {
std::cerr << "Error: Unable to create socket: " << strerror(errno) << '\n';
return 1;
}
// Configure server address
struct sockaddr_in server_addr;
server_addr.sin_family = AF_INET;
server_addr.sin_port = htons(port);
std::memcpy(&server_addr.sin_addr.s_addr, server->h_addr, server->h_length);
// Connect to the server
if (connect(socket_fd, (struct sockaddr *)&server_addr, sizeof(server_addr)) < 0) {
std::cerr << "Error: Connection failed: " << strerror(errno) << '\n';
close(socket_fd);
return 1;
}
// Prepare the HTTP request
std::string hostnameReq = "example.com"; // Replace with your hostname
// std::string chunk1 = "im string 1\r\n";
// std::string chunk2 = "im string 2\r\n";
// std::string chunk3 = "im string 3\r\n";
std::string chunk1 = "im string 1 ";
std::string chunk2 = "im string 2 ";
std::string chunk3 = "im string 3";
std::string headers =
"GET / HTTP/1.1\r\n"
"Host: " + hostnameReq + "\r\n"
"Connection: close\r\n"
"Transfer-Encoding: chunked\r\n\r\n";
// Send headers
if (send(socket_fd, headers.c_str(), headers.length(), 0) < 0) {
std::cerr << "Error: Failed to send headers: " << strerror(errno) << '\n';
close(socket_fd);
return 1;
}
// Send chunk 1
std::string chunk1Size = toHex(chunk1.length()) + "\r\n";
if (send(socket_fd, chunk1Size.c_str(), chunk1Size.length(), 0) < 0 ||
send(socket_fd, chunk1.c_str(), chunk1.length(), 0) < 0 ||
send(socket_fd, "\r\n", 2, 0) < 0) {
std::cerr << "Error: Failed to send chunk1: " << strerror(errno) << '\n';
close(socket_fd);
return 1;
}
sleep(5);
// Send chunk 2
std::string chunk2Size = toHex(chunk2.length()) + "\r\n";
if (send(socket_fd, chunk2Size.c_str(), chunk2Size.length(), 0) < 0 ||
send(socket_fd, chunk2.c_str(), chunk2.length(), 0) < 0 ||
send(socket_fd, "\r\n", 2, 0) < 0) {
std::cerr << "Error: Failed to send chunk2: " << strerror(errno) << '\n';
close(socket_fd);
return 1;
}
sleep(5);
// Send chunk 3
std::string chunk3Size = toHex(chunk3.length()) + "\r\n";
if (send(socket_fd, chunk3Size.c_str(), chunk3Size.length(), 0) < 0 ||
send(socket_fd, chunk3.c_str(), chunk3.length(), 0) < 0 ||
send(socket_fd, "\r\n", 2, 0) < 0) {
std::cerr << "Error: Failed to send chunk3: " << strerror(errno) << '\n';
close(socket_fd);
return 1;
}
// Send final chunk (0-length)
if (send(socket_fd, "0\r\n\r\n", 5, 0) < 0) {
std::cerr << "Error: Failed to send final chunk: " << strerror(errno) << '\n';
close(socket_fd);
return 1;
}
std::cout << "Chunked request sent successfully in multiple parts.\n";
// Receive the response
char buffer[1024];
int bytes_received;
while ((bytes_received = recv(socket_fd, buffer, sizeof(buffer) - 1, 0)) > 0) {
buffer[bytes_received] = '\0'; // Null-terminate the received data
std::cout << buffer;
}
if (bytes_received < 0) {
std::cerr << "Error: Failed to receive response: " << strerror(errno) << '\n';
}
// Clean up
close(socket_fd);
return 0;
}
*/