-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
/
Copy pathudp-client.cpp
62 lines (49 loc) · 1.53 KB
/
udp-client.cpp
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
/*
g++ udp-client.cpp ../../objs/st/libst.a -g -O0 -o udp-client && ./udp-client 127.0.0.1 8000 3
*/
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include "../../objs/st/st.h"
#include <sys/socket.h>
#include <arpa/inet.h>
void* pfn(void* arg) {
sockaddr_in addr = *(sockaddr_in*)arg;
char* ip = inet_ntoa(addr.sin_addr);
int port = ntohs(addr.sin_port);
int fd = ::socket(AF_INET, SOCK_DGRAM, 0);
st_netfd_t stfd = st_netfd_open_socket(fd);
printf("connect to %s:%d, fd=%d ok\n", ip, port, fd);
while (true) {
char data[] = "Hello world!";
int r0 = st_sendto(stfd, data, sizeof(data), (sockaddr*)&addr, sizeof(sockaddr_in), ST_UTIME_NO_TIMEOUT);
printf("fd #%d, send %dB %s, r0=%d\n", fd, (int)sizeof(data), data, r0);
if (r0 != (int)sizeof(data)) {
break;
}
st_usleep(800 * 1000);
}
st_netfd_close(stfd);
return NULL;
}
int main(int argc, char** argv) {
if (argc < 4) {
printf("Usage: %s ip port workers\n", argv[0]);
exit(-1);
}
st_init();
const char* ip = argv[1];
int port = ::atoi(argv[2]);
int workers = ::atoi(argv[3]);
printf("Start %d workers, to %s:%d\n", workers, ip, port);
sockaddr_in addr;
addr.sin_family = AF_INET;
addr.sin_addr.s_addr = inet_addr(ip);
addr.sin_port = htons(port);
for (int i = 0; i < workers; i++) {
st_thread_t thread = st_thread_create(pfn, &addr, 1, 0);
assert(thread);
}
st_thread_exit(NULL);
return 0;
}