-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
udp_echo_server.c
73 lines (66 loc) · 1.61 KB
/
udp_echo_server.c
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
/*
* udp echo server
*
* @build make examples
* @server bin/udp_echo_server 1234
* @client bin/nc -u 127.0.0.1 1234
* nc -u 127.0.0.1 1234
*
*/
#include "hloop.h"
#include "hsocket.h"
/*
* @test kcp_server
* #define TEST_KCP 1
*
* @build ./configure --with-kcp && make clean && make
* @server bin/udp_echo_server 1234
* @client bin/nc -k 127.0.0.1 1234
*
*/
#define TEST_KCP 0
static void on_recvfrom(hio_t* io, void* buf, int readbytes) {
printf("on_recvfrom fd=%d readbytes=%d\n", hio_fd(io), readbytes);
char localaddrstr[SOCKADDR_STRLEN] = {0};
char peeraddrstr[SOCKADDR_STRLEN] = {0};
printf("[%s] <=> [%s]\n",
SOCKADDR_STR(hio_localaddr(io), localaddrstr),
SOCKADDR_STR(hio_peeraddr(io), peeraddrstr));
char* str = (char*)buf;
printf("< %.*s", readbytes, str);
// echo
printf("> %.*s", readbytes, str);
hio_write(io, buf, readbytes);
#if TEST_KCP
if (strncmp(str, "CLOSE", 5) == 0) {
hio_close_rudp(io, hio_peeraddr(io));
}
#endif
}
int main(int argc, char** argv) {
if (argc < 2) {
printf("Usage: %s port|path\n", argv[0]);
return -10;
}
const char* host = "0.0.0.0";
int port = atoi(argv[1]);
#if ENABLE_UDS
if (port == 0) {
host = argv[1];
port = -1;
}
#endif
hloop_t* loop = hloop_new(0);
hio_t* io = hloop_create_udp_server(loop, host, port);
if (io == NULL) {
return -20;
}
#if TEST_KCP
hio_set_kcp(io, NULL);
#endif
hio_setcb_read(io, on_recvfrom);
hio_read(io);
hloop_run(loop);
hloop_free(&loop);
return 0;
}