diff options
author | Pierre Pfister <ppfister@cisco.com> | 2018-12-10 17:01:01 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-12-12 00:34:13 +0000 |
commit | 057b3565a09b62c9415a44a99f43ad891d864ca5 (patch) | |
tree | 403dc7e9e45d68bfe43941e55a016e65b9ad089e /src/vnet/ipsec/ipsec_if_in.c | |
parent | bb5d22dafb394c6a619894bb803f770266f223f0 (diff) |
Change ipsec feature node names
ipsec4-output and ipsec6-output were conflicting with ipsec
interface names ("ipsec<id>") and vnet/interface.c autogenerated
output node ("<ifname>-output").
Changing feature names seems to be the less invasive option.
This patch also changes "input" feature names for consistency.
Change-Id: I4ba10d07e9ba09df20aa2500104252b06b55f8f7
Signed-off-by: Pierre Pfister <ppfister@cisco.com>
Diffstat (limited to 'src/vnet/ipsec/ipsec_if_in.c')
-rw-r--r-- | src/vnet/ipsec/ipsec_if_in.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/ipsec/ipsec_if_in.c b/src/vnet/ipsec/ipsec_if_in.c index a9aab820b91..1dbd12710c9 100644 --- a/src/vnet/ipsec/ipsec_if_in.c +++ b/src/vnet/ipsec/ipsec_if_in.c @@ -230,7 +230,7 @@ VLIB_REGISTER_NODE (ipsec_if_input_node) = { .n_errors = ARRAY_LEN(ipsec_if_input_error_strings), .error_strings = ipsec_if_input_error_strings, - .sibling_of = "ipsec4-input", + .sibling_of = "ipsec4-input-feature", }; /* *INDENT-ON* */ |