diff options
author | Ondrej Fabry <ofabry@cisco.com> | 2023-04-27 00:00:01 +0200 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2023-07-06 18:30:11 +0000 |
commit | cfd8e4ec8875d210ce33575accc5ebe52c5f68e3 (patch) | |
tree | a7957937b30fa153c4453f3e559c330fc6954eba /src/plugins/memif | |
parent | 7108cb15cab8bd20f2f2dc7632f2d0a154a78eff (diff) |
api: memif - Mark old message versions as deprecated
List of changed messages:
- memif_socket_filename_add_del
- memif_socket_filename_add_del_reply
- memif_create
- memif_create_reply
This change is part of VPP API cleanup initiative.
Type: fix
Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
Change-Id: Id334990584b64a0efa3c28a3d8b6b641adab8c09
Diffstat (limited to 'src/plugins/memif')
-rw-r--r-- | src/plugins/memif/memif.api | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/plugins/memif/memif.api b/src/plugins/memif/memif.api index b800bfa6517..5973ad60054 100644 --- a/src/plugins/memif/memif.api +++ b/src/plugins/memif/memif.api @@ -43,6 +43,8 @@ enum memif_mode */ autoreply define memif_socket_filename_add_del { + option deprecated; + u32 client_index; u32 context; bool is_add; /* 0 = remove, 1 = add association */ @@ -104,6 +106,8 @@ define memif_socket_filename_add_del_v2_reply */ define memif_create { + option deprecated; + u32 client_index; u32 context; @@ -128,6 +132,8 @@ define memif_create */ define memif_create_reply { + option deprecated; + u32 context; i32 retval; vl_api_interface_index_t sw_if_index; |