-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode5_3.cpp
More file actions
50 lines (41 loc) · 1.08 KB
/
Copy pathcode5_3.cpp
File metadata and controls
50 lines (41 loc) · 1.08 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
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <signal.h>
#include <unistd.h>
#include <stdlib.h>
#include <assert.h>
#include <stdio.h>
#include <string.h>
static bool stop = 0;
static void handle_term(int sig)
{
stop = 1;
}
int main(int argc,char *argv[])
{
signal(SIGTERM,handle_term);//set signal SIGTERM'handle function
if(argc <= 3)
{
printf("usage: %s ip_address port_number backlog\n",basename(argv[0]));
return 1;
}
const char *ip = argv[1];
int port = atoi(argv[2]);//atio is char * to int;
int backlog = atoi(argv[3]);
int sock = socket(PF_INET,SOCK_STREAM,0);// PF_INET net server PF_UNIX local server,SOCK_STREAM tcp SOCK_DGRAM udp
assert(sock >= 0);
//create ipv4 socket address
struct sockaddr_in address;
bzero(&address,sizeof(address));
address.sin_family = AF_INET;
inet_pton(AF_INET,ip,&address.sin_addr);
address.sin_port = htons(port);
int ret = bind(sock,(struct sockaddr *)&address,sizeof(address));
assert(ret != -1);//0 exit 1 nomal
ret = listen(sock,backlog);
while(!stop)
sleep(1);
close(sock);
return 0;
}