From 20c90f765dd0350892421e1dea544752108f4ce9 Mon Sep 17 00:00:00 2001 From: Pavel Kotucek Date: Tue, 7 Jun 2016 14:44:26 +0200 Subject: 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 --- vnet/vnet/api_errno.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'vnet') diff --git a/vnet/vnet/api_errno.h b/vnet/vnet/api_errno.h index 5d08fb43..bf49c0a2 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), -- cgit