diff options
author | Florin Coras <fcoras@cisco.com> | 2022-02-10 11:57:06 -0800 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2022-02-10 21:17:16 +0000 |
commit | 0bce71eee3f144b7ad15cd008ccc9e646d6663f4 (patch) | |
tree | d9f4798fd127d48cbf7bf9d5b17aaf5cd5473cd9 /src/plugins/srtp/srtp.c | |
parent | efeea5b111db9075ffdab73191f6343f6872bfb2 (diff) |
session: use transport endpoint cfg for listen
Makes it similar to connects.
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I38c328670054e1a9ba4dc4ea8fe7519a5a09e8be
Diffstat (limited to 'src/plugins/srtp/srtp.c')
-rw-r--r-- | src/plugins/srtp/srtp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/srtp/srtp.c b/src/plugins/srtp/srtp.c index cc4b59de569..715e2c9e77c 100644 --- a/src/plugins/srtp/srtp.c +++ b/src/plugins/srtp/srtp.c @@ -706,7 +706,7 @@ srtp_disconnect (u32 ctx_handle, u32 thread_index) } static u32 -srtp_start_listen (u32 app_listener_index, transport_endpoint_t *tep) +srtp_start_listen (u32 app_listener_index, transport_endpoint_cfg_t *tep) { vnet_listen_args_t _bargs, *args = &_bargs; session_handle_t udp_al_handle; |