Blame view

src/sonde.c 1.04 KB
a69a94a7   skhinach   Ajout de gestion ...
1
2
3
4
5
6
7
  #include <stdlib.h>
  #include <stdio.h>
  #include <unistd.h>
  #include <getopt.h>
  #include <string.h>
  #include <signal.h>
  #include "libnet.h"
5940bf6e   skhinach   Quelques modifs
8
  
a69a94a7   skhinach   Ajout de gestion ...
9
10
11
12
13
  
  int sock_fd;
  
  struct sigaction action;
  
5940bf6e   skhinach   Quelques modifs
14
15
  
  
a69a94a7   skhinach   Ajout de gestion ...
16
17
18
19
20
21
22
23
24
25
26
  void handler(int sig)
  {
  	if(sig==SIGINT)
  	{
  		printf("\nINTERRUPTION SOCKET : %d\n\n", sock_fd);
  		close(sock_fd);
  		exit(1);
  	}
  }
  
  
5940bf6e   skhinach   Quelques modifs
27
  void argPortParsing(int argc, char* argv[], char* device)
a69a94a7   skhinach   Ajout de gestion ...
28
  {
5940bf6e   skhinach   Quelques modifs
29
  	struct option port_arg={"dev", 1, NULL, 'd'};
a69a94a7   skhinach   Ajout de gestion ...
30
31
32
  	char opt;
  	int longindex;
  
5940bf6e   skhinach   Quelques modifs
33
  	while( (opt=getopt_long(argc, argv, "d:", &port_arg, &longindex)) !='d' && opt!=-1) {}
a69a94a7   skhinach   Ajout de gestion ...
34
  
5940bf6e   skhinach   Quelques modifs
35
  	if(opt=='d') 
a69a94a7   skhinach   Ajout de gestion ...
36
  	{
5940bf6e   skhinach   Quelques modifs
37
  		strcpy(device, optarg);
a69a94a7   skhinach   Ajout de gestion ...
38
39
40
41
  		printf("%s\n", optarg);
  	}
  	else
  	{
5940bf6e   skhinach   Quelques modifs
42
  		strcpy(device, "eth0");
a69a94a7   skhinach   Ajout de gestion ...
43
44
45
46
47
48
  	}
  }
  
  
  int main(int argc, char* argv[])
  {
5940bf6e   skhinach   Quelques modifs
49
50
  	char device[100]; // On stockera le nom de l'interface
  	argPortParsing(argc, argv, device); // On vérifie les arguments si il y a
a69a94a7   skhinach   Ajout de gestion ...
51
  
5940bf6e   skhinach   Quelques modifs
52
53
54
  	// On met en place la détection d'interruption	
  	action.sa_handler=&handler; 
  	sigaction(SIGINT, &action, NULL);	
a69a94a7   skhinach   Ajout de gestion ...
55
  
5940bf6e   skhinach   Quelques modifs
56
  	// Fonction dcoute du réseau
0f1eb4c5   skhinach   test
57
  	//if(ecouteReseau(device)!=0){ return -1;}
a69a94a7   skhinach   Ajout de gestion ...
58
  	
0f1eb4c5   skhinach   test
59
60
  	sendUDPBroadcast("coucou",2020);
  
a69a94a7   skhinach   Ajout de gestion ...
61
62
  	return 0;
  }