Skip to content

Commit

Permalink
Reduce scope of direction mask for access flows
Browse files Browse the repository at this point in the history
This mask was introduced as part of fixing the punt of DNS packets
for the egress DNS feature. However the mask should be limited to 0x3
to avoid masking droplog metadata.

Signed-off-by: Kiran Shastri <shastrinator@gmail.com>
(cherry picked from commit f6ba62e)
  • Loading branch information
shastrinator committed May 6, 2022
1 parent 50fc695 commit 207bb93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent-ovs/ovs/include/FlowConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ extern const uint64_t REMOTE_TUNNEL_BOUNCE_TO_NODE;

namespace access_meta {

const uint64_t MASK =0xff00;
const uint64_t MASK =0x0300;
/**
* Ingress to ep
*/
Expand Down

0 comments on commit 207bb93

Please sign in to comment.