aboutsummaryrefslogtreecommitdiffstats
path: root/lib/src/protocol/tcp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/src/protocol/tcp.c')
-rw-r--r--lib/src/protocol/tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/src/protocol/tcp.c b/lib/src/protocol/tcp.c
index 14e07b091..31c495ff4 100644
--- a/lib/src/protocol/tcp.c
+++ b/lib/src/protocol/tcp.c
@@ -85,14 +85,14 @@ tcp_set_interest_name_suffix (hicn_type_t type, hicn_protocol_t * h,
int
tcp_mark_packet_as_interest (hicn_type_t type, hicn_protocol_t * h)
{
- h->tcp.flags &= ~TCP_FLAG_ECE;
+ h->tcp.flags &= ~HICN_TCP_FLAG_ECE;
return HICN_LIB_ERROR_NONE;
}
int
tcp_mark_packet_as_data (hicn_type_t type, hicn_protocol_t * h)
{
- h->tcp.flags |= TCP_FLAG_ECE;
+ h->tcp.flags |= HICN_TCP_FLAG_ECE;
return HICN_LIB_ERROR_NONE;
}