Skip to content

Commit

Permalink
Handle slice action print
Browse files Browse the repository at this point in the history
  • Loading branch information
cardigliano committed Nov 30, 2023
1 parent 3ddd4f3 commit b9f2277
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions userland/examples_ft/ftflow.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,9 @@ const char *action_to_string(pfring_ft_action action) {
case PFRING_FT_ACTION_FORWARD: return "forward";
case PFRING_FT_ACTION_DISCARD: return "discard";
case PFRING_FT_ACTION_DEFAULT: return "default";
case PFRING_FT_ACTION_USER_1: return "user1";
case PFRING_FT_ACTION_USER_2: return "user2";
case PFRING_FT_ACTION_USER_1: return "user_1";
case PFRING_FT_ACTION_USER_2: return "user_2";
case PFRING_FT_ACTION_SLICE: return "slice";
}
return "";
}
Expand Down

0 comments on commit b9f2277

Please sign in to comment.