]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/ipfilter/lib/familyname.c
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / contrib / ipfilter / lib / familyname.c
1 #include "ipf.h"
2
3 const char *familyname(int family)
4 {
5         if (family == AF_INET)
6                 return "inet";
7 #ifdef AF_INET6
8         if (family == AF_INET6)
9                 return "inet6";
10 #endif
11         return "unknown";
12 }