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/http | |
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/http')
-rw-r--r-- | src/plugins/http/http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/http/http.c b/src/plugins/http/http.c index 657a0b54755..668aab0fa83 100644 --- a/src/plugins/http/http.c +++ b/src/plugins/http/http.c @@ -734,7 +734,7 @@ http_transport_connect (transport_endpoint_cfg_t *tep) } static u32 -http_start_listen (u32 app_listener_index, transport_endpoint_t *tep) +http_start_listen (u32 app_listener_index, transport_endpoint_cfg_t *tep) { vnet_listen_args_t _args = {}, *args = &_args; session_t *tc_listener, *app_listener; |