diff options
Diffstat (limited to 'src/plugins/hs_apps/sapi/vpp_echo_common.c')
-rw-r--r-- | src/plugins/hs_apps/sapi/vpp_echo_common.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/plugins/hs_apps/sapi/vpp_echo_common.c b/src/plugins/hs_apps/sapi/vpp_echo_common.c index 013affd0420..03ed278d497 100644 --- a/src/plugins/hs_apps/sapi/vpp_echo_common.c +++ b/src/plugins/hs_apps/sapi/vpp_echo_common.c @@ -18,6 +18,12 @@ #include <hs_apps/sapi/vpp_echo_common.h> +char *echo_fail_code_str[] = { +#define _(sym, str) str, + foreach_echo_fail_code +#undef _ +}; + /* * * Format functions @@ -487,7 +493,8 @@ echo_get_session_from_handle (echo_main_t * em, u64 handle) clib_spinlock_unlock (&em->sid_vpp_handles_lock); if (!p) { - ECHO_FAIL ("unknown handle 0x%lx", handle); + ECHO_FAIL (ECHO_FAIL_GET_SESSION_FROM_HANDLE, + "unknown handle 0x%lx", handle); return 0; } return pool_elt_at_index (em->sessions, p[0]); |