1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-31 09:21:19 +01:00

fixup! sock: Introduction of new application layer API

This commit is contained in:
Martine Lenders 2016-08-19 15:33:00 +02:00
parent b71c2f334a
commit 44af8765af

View File

@ -37,12 +37,12 @@ extern "C" {
/**
* @brief Address to bind to any IPv4 address
*/
#define SOCK_ADDR_IPV4_ADDR_ANY (0U)
#define SOCK_ADDR_IPV4_ANY (0U)
/**
* @brief Address to bind to any IPv6 address
*/
#define SOCK_ADDR_IPV6_ADDR_ANY { { 0 } }
#define SOCK_ADDR_IPV6_ANY { { 0 } }
typedef uint32_t sock_addr_ipv4_t;