summaryrefslogtreecommitdiffstats
path: root/vnet/vnet/api_errno.h
diff options
context:
space:
mode:
authorPavel Kotucek <pavel.kotucek@pantheon.tech>2016-06-07 14:44:26 +0200
committerKeith Burns <alagalah@gmail.com>2016-06-27 13:47:34 +0000
commit20c90f765dd0350892421e1dea544752108f4ce9 (patch)
treebc90a2cba4f365ec31b7db144412dd85fcd31147 /vnet/vnet/api_errno.h
parent8e39bb402afd5908f5b2747bcbb0cc5ffd06bacf (diff)
VPP-108 : API calls to read classify table and sessions
Added new API calls to read - classify table ids as array - classify table ids for specified interface - classsify table info and to dump sessions of specified classify table. Change-Id: I089604fa98eea92866495089d76c2330ae7d850c Signed-off-by: Pavel Kotucek <pavel.kotucek@pantheon.tech>
Diffstat (limited to 'vnet/vnet/api_errno.h')
-rw-r--r--vnet/vnet/api_errno.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/vnet/vnet/api_errno.h b/vnet/vnet/api_errno.h
index 5d08fb434a0..bf49c0a27c7 100644
--- a/vnet/vnet/api_errno.h
+++ b/vnet/vnet/api_errno.h
@@ -80,7 +80,8 @@ _(ALREADY_CONNECTED, -86, "Connection to the data plane already exists") \
_(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")
+_(LISP_DISABLED, -90, "LISP is disabled") \
+_(CLASSIFY_TABLE_NOT_FOUND, -91, "Classify table not found")
typedef enum {
#define _(a,b,c) VNET_API_ERROR_##a = (b),