aboutsummaryrefslogtreecommitdiffstats
path: root/src/vlibmemory
diff options
context:
space:
mode:
authorOndrej Fabry <ofabry@cisco.com>2023-04-27 00:00:27 +0200
committerDave Wallace <dwallacelf@gmail.com>2023-07-06 18:29:34 +0000
commit7108cb15cab8bd20f2f2dc7632f2d0a154a78eff (patch)
treeb1170ff4aa49b9d60a0ad2c8f3e43fe3641cd288 /src/vlibmemory
parentbe56761663b00260813c3bd9db00507c81b6104d (diff)
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
Diffstat (limited to 'src/vlibmemory')
-rw-r--r--src/vlibmemory/memclnt.api4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vlibmemory/memclnt.api b/src/vlibmemory/memclnt.api
index 0532f1734bf..a8e7cfeaec0 100644
--- a/src/vlibmemory/memclnt.api
+++ b/src/vlibmemory/memclnt.api
@@ -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 */