blob: 94165403b50d6986ba49f75cf0c92f7c6df7f897 (
plain)
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
|
/*
* (C) 2012-2013 by Pablo Neira Ayuso <pablo@netfilter.org>
* (C) 2013 by Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published
* by the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
#include <internal.h>
#include <stdlib.h>
#include <string.h>
#include <limits.h>
#include <stdint.h>
#include <arpa/inet.h>
const char *nft_family2str(uint32_t family)
{
switch (family) {
case AF_INET:
return "ip";
case AF_INET6:
return "ip6";
case AF_BRIDGE:
return "bridge";
case 0:
return "arp";
default:
return "unknown";
}
}
int nft_str2family(const char *family)
{
if (strcmp(family, "ip") == 0)
return AF_INET;
else if (strcmp(family, "ip6") == 0)
return AF_INET6;
else if (strcmp(family, "bridge") == 0)
return AF_BRIDGE;
else if (strcmp(family, "arp") == 0)
return 0;
return -1;
}
|