diff options
author | Ondrej Fabry <ofabry@cisco.com> | 2023-03-22 22:39:50 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2023-03-24 16:46:07 +0000 |
commit | c9fac2111b88d7602a99af21c0c1339a6cbd6bba (patch) | |
tree | 3761011bb389c1bcdda6c66ad3879b27fd2bd0fd /src/vnet/session/session.api | |
parent | 696f8e042f89d18ea4150ea2c61614b9d11c0c52 (diff) |
api: Remove deprecated message from API
Type: refactor
Signed-off-by: Ondrej Fabry <ofabry@cisco.com>
Change-Id: Ib80a4d1f8bac5dc27db1aafe65165cbb509b4edf
Diffstat (limited to 'src/vnet/session/session.api')
-rw-r--r-- | src/vnet/session/session.api | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/vnet/session/session.api b/src/vnet/session/session.api index d2a942fb68b..9a7bb0139bd 100644 --- a/src/vnet/session/session.api +++ b/src/vnet/session/session.api @@ -117,38 +117,6 @@ autoreply define app_del_cert_key_pair { u32 index; }; -/** \brief Application add TLS certificate - ### WILL BE DEPRECATED POST 20.01 ### - @param client_index - opaque cookie to identify the sender - @param context - sender context, to match reply w/ request - @param cert_len - certificate length - @param cert - certificate as a string -*/ -autoreply define application_tls_cert_add { - option deprecated="to be removed post 21.06"; - u32 client_index; - u32 context; - u32 app_index; - u16 cert_len; - u8 cert[cert_len]; -}; - -/** \brief Application add TLS key - ### WILL BE DEPRECATED POST 20.01 ### - @param client_index - opaque cookie to identify the sender - @param context - sender context, to match reply w/ request - @param key_len - certificate length - @param key - PEM encoded key as a string -*/ -autoreply define application_tls_key_add { - option deprecated="to be removed post 21.06"; - u32 client_index; - u32 context; - u32 app_index; - u16 key_len; - u8 key[key_len]; -}; - /** \brief add/del application worker @param client_index - opaque cookie to identify the sender client to vpp direction only |