diff options
Diffstat (limited to 'src/shared/in-addr-util.c')
-rw-r--r-- | src/shared/in-addr-util.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/shared/in-addr-util.c b/src/shared/in-addr-util.c index 6ece85e37d..0c6ebec336 100644 --- a/src/shared/in-addr-util.c +++ b/src/shared/in-addr-util.c @@ -231,3 +231,15 @@ int in_addr_from_string_auto(const char *s, unsigned *family, union in_addr_unio return -EINVAL; } + +static const char* const family_table[] = { + [AF_UNSPEC] = "unspec", + [AF_UNIX] = "unix", + [AF_INET] = "inet", + [AF_INET6] = "inet6", + [AF_NETLINK] = "netlink", + [AF_PACKET] = "packet", + [AF_BLUETOOTH] = "bluetooth", + [AF_NFC] = "nfc", +}; +DEFINE_STRING_TABLE_LOOKUP(family, int); |