mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
53 lines
1.8 KiB
C
53 lines
1.8 KiB
C
/*
|
|
* Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
*
|
|
* 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 <mlenders@inf.fu-berlin.de>
|
|
*/
|
|
#ifndef NET_AF_H
|
|
#define NET_AF_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief UNIX address family definitions
|
|
*/
|
|
typedef 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 /**< local to host (pipes, portals) 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 */
|
|
} unix_af_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* NET_AF_H */
|
|
/** @} */
|