/* * Copyright (C) 2015 Martine Lenders * * 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. */ /** * @defgroup net_af UNIX address families * @ingroup net * @brief Global UNIX address family definitions * @{ * * @file * @brief Global UNIX address family definitions * * @author Martine Lenders */ #ifndef NET_AF_H #define NET_AF_H #ifdef __cplusplus extern "C" { #endif enum { AF_UNSPEC = 0, /**< unspecified address family */ #define AF_UNSPEC AF_UNSPEC /**< unspecified address family (as macro) */ AF_UNIX, /**< local to host (pipes, portals) address family. */ #define AF_UNIX AF_UNIX /**< unspecified address family (as macro) */ AF_PACKET, /**< packet family */ #define AF_PACKET AF_PACKET /**< packet family (as macro) */ AF_INET, /**< internetwork address family: UDP, TCP, etc. */ #define AF_INET AF_INET /**< internetwork address family: UDP, TCP, etc. (as macro) */ AF_INET6, /**< internetwork address family with IPv6: UDP, TCP, etc. */ #define AF_INET6 AF_INET6 /**< internetwork address family with IPv6: UDP, TCP, etc. * (as macro) */ AF_NUMOF, /**< maximum number of address families on this system */ #define AF_NUMOF AF_NUMOF /**< maximum number of address families on this system (as macro) */ #define AF_MAX AF_NUMOF /**< alias for @ref AF_NUMOF */ }; #ifdef __cplusplus } #endif #endif /* NET_AF_H */ /** @} */