| 12
 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
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 
 | #include<myhead.h>#define SER_PORT 8888
 #define SER_IP  "192.168.125.104"
 
 
 void handler(int signo)
 {
 if(signo == SIGCHLD)
 {
 
 while(waitpid(-1, NULL, WNOHANG) >0);
 }
 }
 
 
 int main(int argc, const char *argv[])
 {
 
 
 if(signal(SIGCHLD, handler) == SIG_ERR)
 {
 perror("signal error");
 return -1;
 }
 
 
 
 int sfd = socket(AF_INET, SOCK_STREAM, 0);
 
 
 
 
 if(sfd == -1)
 {
 perror("socket error");
 return -1;
 }
 printf("sfd = %d\n", sfd);
 
 
 
 int reuse = 1;
 if(setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse)) == -1)
 {
 perror("setsockopt error");
 return -1;
 }
 printf("端口号快速重用成功\n");
 
 
 
 
 
 struct sockaddr_in sin;
 sin.sin_family = 	AF_INET;
 sin.sin_port = 		htons(SER_PORT);
 sin.sin_addr.s_addr = 	inet_addr(SER_IP);
 
 
 if(bind(sfd, (struct sockaddr*)&sin, sizeof(sin)) == -1)
 {
 perror("bind error");
 return -1;
 }
 printf("bind success %s %s %d\n", __FILE__, __func__, __LINE__);
 
 
 if(listen(sfd, 128) == -1)
 {
 perror("listen error");
 return -1;
 }
 printf("listen success %s %s %d\n", __FILE__, __func__, __LINE__);
 
 
 
 struct sockaddr_in cin;
 socklen_t socklen = sizeof(cin);
 
 int newfd = -1;
 pid_t pid = 0;
 
 while(1)
 {
 
 newfd = accept(sfd, (struct sockaddr*)&cin, &socklen);
 if(newfd == -1)
 {
 perror("accept error");
 return -1;
 }
 printf("[%s:%d:%d]发来链接请求 %s %s %d\n", \
 inet_ntoa(cin.sin_addr), ntohs(cin.sin_port), newfd,__FILE__, __func__, __LINE__);
 
 
 
 
 pid = fork();
 if(pid > 0)
 {
 
 
 close(newfd);
 
 
 
 
 }else if(pid == 0)
 {
 
 close(sfd);
 
 
 char buf[128] = "";
 while(1)
 {
 
 bzero(buf, sizeof(buf));
 
 
 
 int res = recv(newfd, buf, sizeof(buf), 0);
 if(res == 0)
 {
 printf("客户端已经下线\n");
 break;
 }
 printf("[%s:%d] : %s\n", inet_ntoa(cin.sin_addr), ntohs(cin.sin_port), buf);
 
 
 strcat(buf, "*_*");
 
 
 send(newfd, buf, sizeof(buf), 0);
 printf("发送成功\n");
 }
 
 
 close(newfd);
 
 
 exit(EXIT_SUCCESS);
 
 
 }else
 {
 perror("fork error");
 return -1;
 }
 
 
 }
 
 
 close(sfd);
 
 
 
 
 
 return 0;
 }
 
 
 |