Skip to content

Commit

Permalink
Adding new short flow drop reason(SAME_FLOW_RFLOW).
Browse files Browse the repository at this point in the history
Change-Id: I31e17f9229e675e1dfff0f34073b4c21c0c8d855
Partial-bug: 1556290
  • Loading branch information
manishsing committed Apr 5, 2016
1 parent 27904db commit 91ccb32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/vr_flow.h
Expand Up @@ -73,6 +73,7 @@ typedef enum {
#define VR_FLOW_DR_OUT_SG 0x10
#define VR_FLOW_DR_REVERSE_SG 0x11
#define VR_FLOW_DR_REVERSE_OUT_SG 0x12
#define VR_FLOW_DR_SAME_FLOW_RFLOW_KEY 0x13

#define VR_IP6_ADDRESS_LEN 16

Expand Down
2 changes: 2 additions & 0 deletions utils/flow.c
Expand Up @@ -348,6 +348,8 @@ flow_get_drop_reason(uint8_t drop_code)
return "RevSG";
case VR_FLOW_DR_REVERSE_OUT_SG:
return "RevOutSG";
case VR_FLOW_DR_SAME_FLOW_RFLOW_KEY:
return "SameFlowRflowKey";
default:
break;
}
Expand Down

0 comments on commit 91ccb32

Please sign in to comment.