diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2019-11-06 14:47:40 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-11-07 17:13:17 +0000 |
commit | 45ec9f49bc7ee0bd3ac4f2a07ecb1d0b9280c036 (patch) | |
tree | d6d255e1b8747de69af8e798d9e273e9ee7ec80e /src/vnet/api_errno.h | |
parent | 9d3e1b433f394781a55a4c7c39b695d08dd2563f (diff) |
session: ckpair store & crypto engine as mq params
Type: feature
This patch adds the logic to pass to connect &
listen msg in the mq the following parameters
* ckpair index
* crypto engine (for now only used in quic)
Change-Id: I7213d8b581cb4532a9a6b18c4b3fe021287b7733
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.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 a3451421c50..2fbedf2eed6 100644 --- a/src/vnet/api_errno.h +++ b/src/vnet/api_errno.h @@ -151,7 +151,8 @@ _(RSRC_IN_USE, -155, "Resource In Use") \ _(KEY_LENGTH, -156, "invalid Key Length") \ _(FIB_PATH_UNSUPPORTED_NH_PROTO, -157, "Unsupported FIB Path protocol") \ _(API_ENDIAN_FAILED, -159, "Endian mismatch detected") \ -_(NO_CHANGE, -160, "No change in table") +_(NO_CHANGE, -160, "No change in table") \ +_(MISSING_CERT_KEY, -161, "Missing certifcate or key") typedef enum { |