Skip to content

Commit

Permalink
Rename PF_RING_FT_FLOW_FLAGS_IGNORE_VLAN to PFRING_FT_IGNORE_VLAN
Browse files Browse the repository at this point in the history
  • Loading branch information
cardigliano committed Aug 29, 2024
1 parent a6a2c34 commit 7d52320
Show file tree
Hide file tree
Showing 11 changed files with 1 addition and 1 deletion.
Binary file modified userland/lib/libs/libpfring_ft_x86_64.a
Binary file not shown.
Binary file modified userland/lib/libs/libpfring_ft_x86_64.so
Binary file not shown.
Binary file modified userland/lib/libs/libpfring_ft_x86_64_core-avx2.a
Binary file not shown.
Binary file modified userland/lib/libs/libpfring_ft_x86_64_core-avx2_dl.a
Binary file not shown.
Binary file modified userland/lib/libs/libpfring_ft_x86_64_corei7-avx.a
Binary file not shown.
Binary file modified userland/lib/libs/libpfring_ft_x86_64_corei7-avx_dl.a
Binary file not shown.
Binary file modified userland/lib/libs/libpfring_ft_x86_64_corei7.a
Binary file not shown.
Binary file modified userland/lib/libs/libpfring_ft_x86_64_corei7_dl.a
Binary file not shown.
Binary file modified userland/lib/libs/libpfring_ft_x86_64_dl.a
Binary file not shown.
Binary file modified userland/lib/libs/libpfring_ft_x86_64_dl.so
Binary file not shown.
2 changes: 1 addition & 1 deletion userland/lib/pfring_ft.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ typedef enum {
} pfring_ft_flow_status;

#define PF_RING_FT_FLOW_FLAGS_L7_GUESS (1 << 0) /**< pfring_ft_flow_value.flags: detected L7 protocol is a guess. */
#define PF_RING_FT_FLOW_FLAGS_IGNORE_VLAN (1 << 1) /**< pfring_ft_flow_value.flags: do not include vlan in flow key. */

typedef struct {
u_int32_t num_protocols; /**< Number of supported L7 protocols */
Expand Down Expand Up @@ -292,6 +291,7 @@ typedef void
#define PFRING_FT_TABLE_FLAGS_DPI_EXTRA (1 << 1) /**< pfring_ft_create_table() flag: enable nDPI extra dissection (more flow metadata) */
#define PFRING_FT_DECODE_TUNNELS (1 << 2) /**< pfring_ft_create_table() flag: decode tunnels (GTP, L2TP, CAPWAP) */
#define PFRING_FT_IGNORE_HW_HASH (1 << 3) /**< pfring_ft_create_table() flag: ignore hw packet hash (e.g. when it's asymmetric leading to one flow per direction) */
#define PFRING_FT_IGNORE_VLAN (1 << 4) /**< pfring_ft_create_table() flag: do not include vlan in flow key */

/**
* Create a new flow table.
Expand Down

0 comments on commit 7d52320

Please sign in to comment.