diff options
author | Florin Coras <fcoras@cisco.com> | 2023-06-08 20:47:11 -0700 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2023-06-08 21:19:00 -0700 |
commit | 9a1fbb5244e7b45a22ddaaae61fe8621b846c58b (patch) | |
tree | b8e6fff440707a8cd2f5c6878816b423fc9c750a /src/vnet/tcp/tcp.h | |
parent | 81e3243c1b3d34705de7d09b8668a9a068c6af9e (diff) |
tcp: cleanup next nodes and drop logic
TCP nodes consume the buffers so they have no nexts. To avoid long drop
path through vlib graph, add drop node.
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Ibe6e075e83612ed16270934398c6a013f236ae35
Diffstat (limited to 'src/vnet/tcp/tcp.h')
-rw-r--r-- | src/vnet/tcp/tcp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp.h b/src/vnet/tcp/tcp.h index 23849a398ae..75ae9275165 100644 --- a/src/vnet/tcp/tcp.h +++ b/src/vnet/tcp/tcp.h @@ -267,6 +267,8 @@ extern vlib_node_registration_t tcp4_listen_node; extern vlib_node_registration_t tcp6_listen_node; extern vlib_node_registration_t tcp4_input_nolookup_node; extern vlib_node_registration_t tcp6_input_nolookup_node; +extern vlib_node_registration_t tcp4_drop_node; +extern vlib_node_registration_t tcp6_drop_node; #define tcp_cfg tcp_main.cfg #define tcp_node_index(node_id, is_ip4) \ |