From 5d0136f09944b0d7ea9d1db5c368d4d0b36cedd2 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Tue, 12 May 2020 08:51:02 +0000 Subject: feature: Config end nodes are user specific Type: fix it is possible for a user to change the end node of a feature arc, but this change should only apply to that 'instnace' of the arc, not all arcs. for example, if a tunnel has its ipx-output end node changed to adj-midchain-tx, this shouldn't affect all ipx-output arcs. obviously... Signed-off-by: Neale Ranns Change-Id: I41daea7ba6907963e42140307d065c8bcfdcb585 --- src/vnet/config.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/vnet/config.h') diff --git a/src/vnet/config.h b/src/vnet/config.h index ab9e4b19886..7eb3cf0ae1f 100644 --- a/src/vnet/config.h +++ b/src/vnet/config.h @@ -95,7 +95,8 @@ typedef struct u32 *config_string_heap; /* Node index which starts/ends feature processing. */ - u32 *start_node_indices, end_node_index; + u32 *start_node_indices, *end_node_indices_by_user_index, + default_end_node_index; /* Interior feature processing nodes (not including start and end nodes). */ u32 *node_index_by_feature_index; -- cgit 1.2.3-korg