diff options
author | Damjan Marion <damarion@cisco.com> | 2022-01-16 22:47:55 +0100 |
---|---|---|
committer | Damjan Marion <damarion@cisco.com> | 2022-01-17 10:47:26 +0100 |
commit | 81bb6fc611d321a92ad2218e1b852db67980768a (patch) | |
tree | 66d88554a59d1e225347aca663f132475596f8bc /src/vnet/vnet.h | |
parent | 7b90f669d83f432f3610ec0da522bd8ccc4dff01 (diff) |
vnet: introduce vnet_error()
Decouples vnet return values from API return codes.
New vnet_error() creates vnet_error_t whicgh contains both vnet function
return value and return string.
vnet_api_error() converts vlib_error_t constructed with vnet_error() to
API return value.
Type: improvement
Change-Id: I17042954d48c010150fc1dfc5fce9330e8149e87
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vnet/vnet.h')
-rw-r--r-- | src/vnet/vnet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/vnet.h b/src/vnet/vnet.h index 24afe633af2..227fa5be30c 100644 --- a/src/vnet/vnet.h +++ b/src/vnet/vnet.h @@ -45,6 +45,7 @@ #include <vppinfra/types.h> #include <vppinfra/pcap.h> +#include <vnet/error.h> #include <vnet/buffer.h> #include <vnet/config.h> #include <vnet/interface.h> |