diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-07-18 16:15:12 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-07-18 16:15:12 +0200 |
commit | 46f08bea4b09e2cce4b50e3c082df4a92a22598c (patch) | |
tree | 63324753087c1b33cc06b4d200877cd5ce57a6b2 /src/shared/in-addr-util.h | |
parent | 0dd25fb9f005d8ab7ac4bc10a609d00569f8c56a (diff) |
in-addr-util: remove family_to_string() API
we already have a more complete one with af_to_name(), that is generated
from the header files, no need to duplicate this.
Diffstat (limited to 'src/shared/in-addr-util.h')
-rw-r--r-- | src/shared/in-addr-util.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/shared/in-addr-util.h b/src/shared/in-addr-util.h index d76ea9dc30..98de032d95 100644 --- a/src/shared/in-addr-util.h +++ b/src/shared/in-addr-util.h @@ -43,6 +43,3 @@ static inline size_t FAMILY_ADDRESS_SIZE(int family) { assert(family == AF_INET || family == AF_INET6); return family == AF_INET6 ? 16 : 4; } - -const char* family_to_string(int i) _const_; -int family_from_string(const char *s) _pure_; |