-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.c
104 lines (82 loc) · 2.11 KB
/
server.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
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
#include <getopt.h>
#include <limits.h>
#include "common.h"
void atender_cliente(int connfd);
void print_help(char *command)
{
printf("Servidor eco de mensajes.\n");
printf("uso:\n %s <puerto>\n", command);
printf(" %s -h\n", command);
printf("Opciones:\n");
printf(" -h\t\t\tAyuda, muestra este mensaje\n");
}
bool seguir = true;
int main(int argc, char **argv)
{
int opt;
//Sockets
int listenfd, connfd;
unsigned int clientlen;
//Direcciones y puertos
struct sockaddr_in clientaddr;
struct hostent *hp;
char *haddrp, *port;
while ((opt = getopt (argc, argv, "h")) != -1){
switch(opt)
{
case 'h':
print_help(argv[0]);
return 0;
default:
fprintf(stderr, "uso: %s <puerto>\n", argv[0]);
fprintf(stderr, " %s -h\n", argv[0]);
return 1;
}
}
if(argc != 2){
fprintf(stderr, "uso: %s <puerto>\n", argv[0]);
fprintf(stderr, " %s -h\n", argv[0]);
return 1;
}else
port = argv[1];
//Valida el puerto
int port_n = atoi(port);
if(port_n <= 0 || port_n > USHRT_MAX){
fprintf(stderr, "Puerto: %s invalido. Ingrese un número entre 1 y %d.\n", port, USHRT_MAX);
return 1;
}
//Abre un socket de escucha en port
listenfd = open_listenfd(port);
if(listenfd < 0)
connection_error(listenfd);
printf("server escuchando en puerto %s...\n", port);
while (seguir) {
clientlen = sizeof(clientaddr);
connfd = accept(listenfd, (struct sockaddr *)&clientaddr, &clientlen);
/* Determina la IP y nombre de dominio del cliente */
hp = gethostbyaddr((const char *)&clientaddr.sin_addr.s_addr,
sizeof(clientaddr.sin_addr.s_addr), AF_INET);
haddrp = inet_ntoa(clientaddr.sin_addr);
printf("server conectado a %s (%s)\n", hp->h_name, haddrp);
atender_cliente(connfd);
printf("server desconectando a %s (%s)\n", hp->h_name, haddrp);
close(connfd);
}
return 0;
}
void atender_cliente(int connfd)
{
int n;
char buf[MAXLINE] = {0};
while(1){
n = read(connfd, buf, MAXLINE);
if(n <= 0)
return;
printf("Recibido: %s", buf);
//Reenvía el mensaje al cliente
n = write(connfd, buf, n);
if(n <= 0)
return;
memset(buf, 0, MAXLINE); //Encera el buffer
}
}