mirror of https://github.com/ARMmbed/mbed-os.git
45 lines
1.4 KiB
C
45 lines
1.4 KiB
C
/*
|
|
* Copyright (c) 2010-2016 ARM Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: LicenseRef-PBL
|
|
*
|
|
* Licensed under the Permissive Binary License, Version 1.0 (the "License"); you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* https://www.mbed.com/licenses/PBL-1.0
|
|
*
|
|
* See the License for the specific language governing permissions and limitations under the License.
|
|
*
|
|
*/
|
|
#ifndef _NS_LIB_ADDRESS_H
|
|
#define _NS_LIB_ADDRESS_H
|
|
/**
|
|
* \file ns_address.h
|
|
* \brief 6LowPAN library address format description.
|
|
*
|
|
*/
|
|
#include "ns_types.h"
|
|
|
|
/**
|
|
* /enum address_type_t
|
|
* /brief Address types.
|
|
*/
|
|
typedef enum address_type_t {
|
|
ADDRESS_IPV6, /**< IPv6 Address type. Must be used always at socket interface. */
|
|
ADDRESS_IPV4, /**< IPv4 Address type. Must be used always at socket interface. */
|
|
ADDRESS_TUN_DRIVER_ID /**< Local socket address type. The length is 1 byte (driver ID for packet source). */
|
|
} address_type_t;
|
|
|
|
|
|
/**
|
|
* /struct ns_address_t
|
|
* /brief Struct for the addresses used by the socket interface functions and net_address_get().
|
|
*/
|
|
typedef struct ns_address {
|
|
address_type_t type; /**< Address type. */
|
|
uint8_t address[16]; /**< Address. */
|
|
uint16_t identifier; /**< TCP/UDP port number. */
|
|
} ns_address_t;
|
|
|
|
#endif /* _NS_ADDRESS_H */
|