-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlisten_test.c
63 lines (50 loc) · 1.17 KB
/
listen_test.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
//测试监听socket
#include <stdio.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <signal.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
typedef int bool;
//typedef 1 true;
//typedef 0 false;
#define true 1
#define false 0
static bool stop = false;
static void handle_term(int sig)
{
stop = true;
}
int main(int argc, char* argv[])
{
signal(SIGTERM, handle_term);
if(argc < 3)
{
printf("usage's not invalid");
return 1;
}
const char* ip = argv[1];
int port = atoi(argv[2]);
int backlog = atoi(argv[3]);
int sock = socket(PF_INET, SOCK_STREAM, 0);
assert(sock > 0);
//创建一个IPv4 socket地址
struct sockaddr_in cli_address;
bzero(&cli_address, sizeof(cli_address));
cli_address.sin_family = AF_INET;
inet_pton(AF_INET, ip, &cli_address.sin_addr);
cli_address.sin_port = htons(port);
int res = bind(sock, (struct sockaddr*) &cli_address, sizeof(cli_address));
assert(res != -1);
res = listen(sock, backlog);
assert(res != -1);
while(!stop)
{
sleep(1);
}
close(sock);
return 0;
}