diff options
Diffstat (limited to 'src/vlib/node.h')
-rw-r--r-- | src/vlib/node.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vlib/node.h b/src/vlib/node.h index e5d46d83665..ec47f205d11 100644 --- a/src/vlib/node.h +++ b/src/vlib/node.h @@ -417,6 +417,9 @@ typedef struct #define VLIB_FRAME_NO_FREE_AFTER_DISPATCH \ VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH + /* Don't append this frame */ +#define VLIB_FRAME_NO_APPEND (1 << 14) + /* This next frame owns enqueue to node corresponding to node_runtime_index. */ #define VLIB_FRAME_OWNER (1 << 15) |