diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2016-11-03 14:16:26 +0100 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2016-11-03 14:16:34 +0100 |
commit | 37a5ce7bdcc9bfc39d3ebabcfbdc4f4ffad3b7f0 (patch) | |
tree | c7a41b784415b847781af0a18765547ed019b648 /nsh-plugin/nsh/nsh.api | |
parent | ad43a56f743f8fe133b06c1d4477078daae984f4 (diff) |
Remove unused nsh_control_ping
The nsh_control_ping was intended to be temporary
workaround for jvpp problems.
Now it can be safely removed.
Change-Id: I8ea65f84617f1ab772432902ea13c102e165f026
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'nsh-plugin/nsh/nsh.api')
-rw-r--r-- | nsh-plugin/nsh/nsh.api | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/nsh-plugin/nsh/nsh.api b/nsh-plugin/nsh/nsh.api index 9434ba5..8ee4943 100644 --- a/nsh-plugin/nsh/nsh.api +++ b/nsh-plugin/nsh/nsh.api @@ -116,25 +116,3 @@ define nsh_map_details { u32 sw_if_index; u32 next_node; }; - -/** \brief Control ping from client to api server request - @param client_index - opaque cookie to identify the sender - @param context - sender context, to match reply w/ request -*/ -define nsh_control_ping { - u32 client_index; - u32 context; -}; - -/** \brief Control ping from the client to the server response - @param client_index - opaque cookie to identify the sender - @param context - sender context, to match reply w/ request - @param retval - return code for the request - @param vpe_pid - the pid of the vpe, returned by the server -*/ -define nsh_control_ping_reply { - u32 context; - i32 retval; - u32 client_index; - u32 vpe_pid; -}; |