Blame view

RIOT/sys/shell/commands/sc_whitelist.c 1.38 KB
a752c7ab   elopes   add first test an...
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
  /*
   * Copyright (C) Freie Universitรคt Berlin
   *
   * This file is subject to the terms and conditions of the GNU Lesser
   * General Public License v2.1. See the file LICENSE in the top level
   * directory for more details.
   */
  
  /**
   * @{
   *
   * @file
   * @author Martine Lenders <mlenders@inf.fu-berlin.de>
   */
  
  #include <stdio.h>
  #include <string.h>
  
  #include "net/gnrc/ipv6/whitelist.h"
  
  static void _usage(char *cmd)
  {
      printf("usage: * %s\n", cmd);
      puts("         Lists all addresses in the whitelist.");
      printf("       * %s add <addr>\n", cmd);
      puts("         Adds <addr> to the whitelist.");
      printf("       * %s del <addr>\n", cmd);
      puts("         Deletes <addr> from the whitelist.");
      printf("       * %s help\n", cmd);
      puts("         Print this.");
  }
  
  int _whitelist(int argc, char **argv)
  {
      ipv6_addr_t addr;
      if (argc < 2) {
          gnrc_ipv6_whitelist_print();
          return 0;
      }
      else if (argc > 2) {
          if (ipv6_addr_from_str(&addr, argv[2]) == NULL) {
              _usage(argv[0]);
              return 1;
          }
      }
      if (strcmp("add", argv[1]) == 0) {
          gnrc_ipv6_whitelist_add(&addr);
      }
      else if (strcmp("del", argv[1]) == 0) {
          gnrc_ipv6_whitelist_del(&addr);
      }
      else if (strcmp("help", argv[1]) == 0) {
          _usage(argv[0]);
      }
      else {
          _usage(argv[0]);
          return 1;
      }
      return 0;
  }
  
  /** @} */