diff options
author | Jon Loeliger <jdl@netgate.com> | 2018-02-01 16:36:12 -0600 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2018-02-07 19:24:56 +0000 |
commit | 3d460bd9bed8e1b77609ef404018ecfac7c29e9e (patch) | |
tree | 2d4d9f2058f6bb0c5ef8142432884a6333b05224 /src/vnet/api_errno.h | |
parent | fe99a7eeb996633051942b6555b4806592dd8ad0 (diff) |
VXLAN: Allow user to specify a custom vxlan tunnel instance id.
If one is not selected by the user, the next available id
will be allocated, thus maintaining backward compatibility.
Change-Id: I4691ed0638b8072f9cfa9f20b9fe4f981e708800
Signed-off-by: Jon Loeliger <jdl@netgate.com>
Diffstat (limited to 'src/vnet/api_errno.h')
-rw-r--r-- | src/vnet/api_errno.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vnet/api_errno.h b/src/vnet/api_errno.h index 707fec4be2f..ed8e7bbb649 100644 --- a/src/vnet/api_errno.h +++ b/src/vnet/api_errno.h @@ -135,7 +135,8 @@ _(ACL_IN_USE_INBOUND, -142, "Inbound ACL in use") \ _(ACL_IN_USE_OUTBOUND, -143, "Outbound ACL in use") \ _(INIT_FAILED, -144, "Initialization Failed") \ _(NETLINK_ERROR, -145, "netlink error") \ -_(BIER_BSL_UNSUP, -146, "BIER bit-string-length unsupported") +_(BIER_BSL_UNSUP, -146, "BIER bit-string-length unsupported") \ +_(INSTANCE_IN_USE, -147, "Instance in use") typedef enum { |