Skip to content

Commit

Permalink
fixup! sock: Introduction of new application layer API
Browse files Browse the repository at this point in the history
  • Loading branch information
miri64 committed Aug 19, 2016
1 parent b71c2f3 commit 44af876
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sys/include/net/sock/addr.h
Expand Up @@ -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;

Expand Down

0 comments on commit 44af876

Please sign in to comment.