-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmultisrv.c
executable file
·79 lines (65 loc) · 1.7 KB
/
multisrv.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
74
75
76
77
78
79
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <errno.h>
#include <time.h>
#include <unistd.h>
int main(int argc, char *argv[])
{
struct addrinfo hint, *result;
struct sockaddr remote;
int res, sfd, fd;
char buf[100];
memset(&hint, 0, sizeof(hint));
hint.ai_family = AF_INET;
hint.ai_socktype = SOCK_STREAM;
hint.ai_protocol = 0;
hint.ai_flags = AI_PASSIVE;
res = getaddrinfo(NULL, "8080", &hint, &result);
if (res != 0)
{
perror("error : cannot get socket address!\n");
exit(1);
}
sfd = socket(result->ai_family, result->ai_socktype, result->ai_protocol);
if (sfd == -1)
{
perror("error : cannot get socket file descriptor!\n");
exit(1);
}
res = bind(sfd, result->ai_addr, result->ai_addrlen);
if (res == -1)
{
perror("error : cannot bind the socket with the given address!\n");
exit(1);
}
res = listen(sfd, SOMAXCONN);
if (res == -1)
{
perror("error : cannot listen at the given socket!\n");
exit(1);
}
while (1)
{
int len = sizeof(struct sockaddr);
fd = accept(sfd, &remote, &len);
pid_t pid = fork();
if ( pid == 0)
{
res = read(fd, buf, sizeof(buf));
printf("user data : %s\n", buf);
/* 模拟 阻塞 处理过程 */
sleep(10);
strcpy(buf, "Hello Client");
res = write(fd, buf, sizeof(buf));
printf("send data : %s\n", buf);
}
else
{
printf("son handle the event, pid = %d\n", pid);
}
}
}