From 32dccec98e4c7d7e4ce902e19ba8d1b29b823758 Mon Sep 17 00:00:00 2001 From: Jordan Augé Date: Wed, 23 Sep 2020 17:50:52 +0200 Subject: [HICN-570] Message buffer (incl. CS and PIT changes) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I4c508e4b04dee3acbfc3da1d26e1770cb826f22b Signed-off-by: Jordan Augé --- hicn-light/src/hicn/core/address.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hicn-light/src/hicn/core/address.h') diff --git a/hicn-light/src/hicn/core/address.h b/hicn-light/src/hicn/core/address.h index d13fc99ed..35d0f63ea 100644 --- a/hicn-light/src/hicn/core/address.h +++ b/hicn-light/src/hicn/core/address.h @@ -18,8 +18,8 @@ * \brief Address */ -#ifndef HICN_ADDRESS_H -#define HICN_ADDRESS_H +#ifndef HICNLIGHT_ADDRESS_H +#define HICNLIGHT_ADDRESS_H #include @@ -84,5 +84,5 @@ extern const char * _address_family_str[]; #define address6_empty(address) (memcmp(address6_ip(address).s6_addr, &in6addr_any, sizeof(struct in6_addr)) == 0) #define address_empty(address) (address_family(address) == AF_INET ? address4_empty(address) : address6_empty(address)) -#endif /* HICN_ADDRESS_H */ +#endif /* HICNLIGHT_ADDRESS_H */ -- cgit 1.2.3-korg