api: memclnt - Mark old message versions as deprecated

List of changed messages:
- memclnt_create
- memclnt_create_reply

This change is part of VPP API cleanup initiative.

Type: fix
Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
Change-Id: I0031cc2f1604ca4c34574c8e1ee28e358c2bbe5d
This commit is contained in:
Ondrej Fabry
2023-04-27 00:00:27 +02:00
committed by Dave Wallace
parent be56761663
commit 7108cb15ca

View File

@ -30,6 +30,8 @@ service {
* Create a client registration
*/
define memclnt_create {
option deprecated;
u32 context; /* opaque value to be returned in the reply */
i32 ctx_quota; /* requested punt context quota */
u64 input_queue; /* client's queue */
@ -38,6 +40,8 @@ define memclnt_create {
};
define memclnt_create_reply {
option deprecated;
u32 context; /* opaque value from the create request */
i32 response; /* Non-negative = success */
u64 handle; /* handle by which vlib knows this client */