summaryrefslogtreecommitdiffstats
path: root/lib/src/protocol/tcp.h
diff options
context:
space:
mode:
authorAngelo Mantellini <manangel@cisco.com>2019-05-13 14:42:24 +0200
committerAngelo Mantellini <manangel@cisco.com>2019-05-13 14:43:45 +0200
commit0a0e51426506985ae1e7cf8c581d109fdad7a725 (patch)
treeb6ce789c802c906c5644f89c1d5a1fa891e9c5a2 /lib/src/protocol/tcp.h
parent7772439ac913ae1d50b4ee31688efac1fba42435 (diff)
[HICN-194] support for android environment
Change-Id: I11a614709152035784e492ccd99bc383765a0aa1 Signed-off-by: Angelo Mantellini <manangel@cisco.com>
Diffstat (limited to 'lib/src/protocol/tcp.h')
-rw-r--r--lib/src/protocol/tcp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/src/protocol/tcp.h b/lib/src/protocol/tcp.h
index 3a15a93b3..ded9a06b2 100644
--- a/lib/src/protocol/tcp.h
+++ b/lib/src/protocol/tcp.h
@@ -143,15 +143,15 @@ static_assert (EXPECTED_TCP_HDRLEN == TCP_HDRLEN,
enum
{
-#define _(f) TCP_FLAG_BIT_##f,
+#define _(f) HICN_TCP_FLAG_BIT_##f,
foreach_tcp_flag
#undef _
- TCP_N_FLAG_BITS,
+ HICN_TCP_N_FLAG_BITS,
};
enum
{
-#define _(f) TCP_FLAG_##f = 1 << TCP_FLAG_BIT_##f,
+#define _(f) HICN_TCP_FLAG_##f = 1 << HICN_TCP_FLAG_BIT_##f,
foreach_tcp_flag
#undef _
};