diff options
author | Florin Coras <fcoras@cisco.com> | 2021-04-22 11:48:35 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2021-04-23 14:59:48 +0000 |
commit | e5f18337f1f5d8b8578b6305b7c11276cc5a18a0 (patch) | |
tree | 9858c8d7bd7273a685abd646997afd2956e1f913 /src/vnet/session | |
parent | 5724aecd20e8f5e50aba418d2a021ef02275d589 (diff) |
tls quic: improve error reporting
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I92f0c1f7c0f4696fa12071440a643aa703d6306f
Diffstat (limited to 'src/vnet/session')
-rw-r--r-- | src/vnet/session/session_types.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vnet/session/session_types.h b/src/vnet/session/session_types.h index 9211df9e46d..c8b1d2eb001 100644 --- a/src/vnet/session/session_types.h +++ b/src/vnet/session/session_types.h @@ -475,7 +475,10 @@ STATIC_ASSERT (sizeof (session_dgram_hdr_t) == (SESSION_CONN_ID_LEN + 8), _ (BAPI_NO_REG, "app bapi registration not found") \ _ (MQ_MSG_ALLOC, "failed to alloc mq msg") \ _ (TLS_HANDSHAKE, "failed tls handshake") \ - _ (EVENTFD_ALLOC, "failed to alloc eventfd") + _ (EVENTFD_ALLOC, "failed to alloc eventfd") \ + _ (NOEXTCFG, "no extended transport config") \ + _ (NOCRYPTOENG, "no crypto engine") \ + _ (NOCRYPTOCKP, "cert key pair not found ") typedef enum session_error_p_ { |