diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2016-06-27 13:09:20 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2016-06-29 18:54:02 +0000 |
commit | 006eb2689b901b4700f4360cc0417c6c0d93cc46 (patch) | |
tree | 62f2005841fa85d7050ff0444ddf07ac7e45e619 /vnet | |
parent | 71fb06fba05ff74390f4ff013ff14ea1086ab631 (diff) |
Add support for ethernet address in LISP API
Change-Id: I9f1522f55bdd11602784a421fd850b839a1070e6
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'vnet')
-rw-r--r-- | vnet/vnet/api_errno.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vnet/vnet/api_errno.h b/vnet/vnet/api_errno.h index bf49c0a27c7..f16d9781bdc 100644 --- a/vnet/vnet/api_errno.h +++ b/vnet/vnet/api_errno.h @@ -81,7 +81,8 @@ _(UNSUPPORTED_JNI_VERSION, -87, "Unsupported JNI version") \ _(FAILED_TO_ATTACH_TO_JAVA_THREAD, -88, "Failed to attach to Java thread") \ _(INVALID_WORKER, -89, "Invalid worker thread") \ _(LISP_DISABLED, -90, "LISP is disabled") \ -_(CLASSIFY_TABLE_NOT_FOUND, -91, "Classify table not found") +_(CLASSIFY_TABLE_NOT_FOUND, -91, "Classify table not found") \ +_(INVALID_EID_TYPE, -92, "Unsupported LSIP EID type") typedef enum { #define _(a,b,c) VNET_API_ERROR_##a = (b), |