Blame view

src/sonde.c 1.08 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
  void handler(int sig)
  {
8450f712   Antoine Moreau   fin
18
19
20
21
22
23
    if(sig==SIGINT)
      {
        printf("\nINTERRUPTION SOCKET : %d\n\n", sock_fd);
        close(sock_fd);
        exit(1);
      }
a69a94a7   skhinach   Ajout de gestion ...
24
25
26
  }
  
  
8450f712   Antoine Moreau   fin
27
  void argDevParsing(int argc, char* argv[], char* device)
a69a94a7   skhinach   Ajout de gestion ...
28
  {
8450f712   Antoine Moreau   fin
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
    struct option port_arg={"dev", 1, NULL, 'd'};
    char opt;
    int longindex;
  
    while( (opt=getopt_long(argc, argv, "d:", &port_arg, &longindex)) !='d' && opt!=-1) {}
  
    if(opt=='d') 
      {
        strcpy(device, optarg);
        printf("%s\n", optarg);
      }
    else
      {
        strcpy(device, "eth0"); //Par defaut eth0
      }
a69a94a7   skhinach   Ajout de gestion ...
44
45
46
47
48
  }
  
  
  int main(int argc, char* argv[])
  {
8450f712   Antoine Moreau   fin
49
50
    char device[100]; // On stockera le nom de l'interface
    argDevParsing(argc, argv, device); // On vérifie les arguments si il y a
a69a94a7   skhinach   Ajout de gestion ...
51
  
8450f712   Antoine Moreau   fin
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
  
8450f712   Antoine Moreau   fin
56
57
    // Fonction dcoute du réseau
    if(ecouteReseau(device)!=0){ return -1;}
0f1eb4c5   skhinach   test
58
  
8450f712   Antoine Moreau   fin
59
    return 0;
a69a94a7   skhinach   Ajout de gestion ...
60
  }