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 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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
#include <stdio.h> #include <stdlib.h>
#include <string.h> #include <arpa/inet.h>
#include <errno.h>
const g_serv_port = 6666; const g_listen_max_count = 5; const g_buff_size = 64;
void handle_request(int connect_fd);
int main(int arg, char *argv[]) { int listen_fd; if ((listen_fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP)) == -1) { perror("socket() error"); exit(EXIT_FAILURE); }
struct sockaddr_in serv_addr; bzero(&serv_addr, sizeof(serv_addr)); serv_addr.sin_family = AF_INET; serv_addr.sin_port = htons(g_serv_port); if ((inet_pton(AF_INET, "0.0.0.0", &serv_addr.sin_addr)) != 1) { perror("inet_pton() error"); exit(EXIT_FAILURE); }
if ((bind(listen_fd, (struct sockaddr *)(&serv_addr), sizeof(serv_addr))) == -1) { if ((close(listen_fd)) == -1) { perror("bind() close() error"); exit(EXIT_FAILURE); }
perror("bind() error"); exit(EXIT_FAILURE); }
if ((listen(listen_fd, g_listen_max_count)) == -1) { if ((close(listen_fd)) == -1) { perror("listen() close() error"); exit(EXIT_FAILURE); }
perror("listen() error"); exit(EXIT_FAILURE); }
struct sockaddr_in clie_addr; int clie_addr_size; int connect_fd; bzero(&clie_addr, sizeof(clie_addr)); clie_addr_size = sizeof(struct sockaddr); pid_t pid; while (1) { if ((connect_fd = accept(listen_fd, (struct sockaddr *)(&clie_addr), &clie_addr_size)) == -1) { perror("accept() error"); continue; }
pid = fork(); if (pid == -1) { perror("fork() error"); continue; } else if (pid == 0) { if ((close(listen_fd)) == -1) { if ((close(connect_fd)) == -1) { perror("fork() close() connect_fd child_process error"); exit(EXIT_FAILURE); }
perror("fork() close() listen_fd child_process error"); exit(EXIT_FAILURE); }
handle_request(connect_fd);
if ((close(connect_fd)) == -1) { perror("fork() close() connect_fd2 child_process error"); exit(EXIT_FAILURE); }
exit(EXIT_SUCCESS); } else if (pid > 0) { if ((close(connect_fd)) == -1) { perror("fork() close() connect_fd parent_process error"); continue; } } }
if ((close(listen_fd)) == -1) { perror("close() listen_fd error"); exit(EXIT_FAILURE); }
return 0; }
void handle_request(int connect_fd) { char msg_recv[g_buff_size]; char msg_send[g_buff_size]; int recv_bytes;
while (1) { bzero(&msg_recv, sizeof(*msg_recv)); bzero(&msg_send, sizeof(*msg_send));
recv_bytes = recv(connect_fd, msg_recv, g_buff_size, 0); if (recv_bytes > 0) { printf("Received message: %s", msg_recv);
strncpy(msg_send, msg_recv, g_buff_size); if ((send(connect_fd, msg_send, g_buff_size, 0)) == -1) { perror("send() error"); return; } } else if (recv_bytes == 0) { printf("The process %d received the end of file\n", getpid()); return; } else if ((recv_bytes == -1) && (errno == EINTR)) { continue; } else if (recv_bytes == -1) { perror("recv() error"); return; } }
return; }
|