test.c
902 Bytes
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
#include <stdlib.h>
#include <stdio.h>
#include <getopt.h>
#include <string.h>
#include "libnet.h"
void argPortParsing(int argc, char* argv[], char* port)
{
struct option port_arg={"port", 1, NULL, 'p'};
char opt;
int longindex;
while( (opt=getopt_long(argc, argv, "p:", &port_arg, &longindex)) !='p' && opt!=-1) {}
if(opt=='p')
{
strcpy(port, optarg);
printf("%s\n", optarg);
}
else
{
printf("La syntaxe doit être de la forme %s -p <port> ou %s --port <port>\n\n", argv[0], argv[0]);
}
}
int main(int argc, char* argv[])
{
char port[10]="80";
argPortParsing(argc, argv, port);
int sock_fd;
if( (sock_fd=initialisationServeur(port)) ==-1 ) { fprintf(stderr, "Initialisation du serveur impossible\n"); return -1; }
boucleServeur(sock_fd, (void*)&reponseConnexion);
sendUDPBroadcast("BroadWesh", 2020);
sendUDPUnicast("192.168.0.37", "Coucou", 2020);
return 0;
}