diff options
author | Florin Coras <fcoras@cisco.com> | 2019-02-03 15:26:14 -0800 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2019-02-04 22:00:54 +0000 |
commit | 288eaab5964b9211350acad8d742fae4789577fe (patch) | |
tree | bdc12155958c6fedf4e976791529fc8a6590d70e /src/vnet/session/application_interface.c | |
parent | 8d991d923b52a2692370bfa33902d29ff5d2f826 (diff) |
session: cleanup part 1
Rename core data structures. This will break compatibility for out of
tree builtin apps.
- stream_session_t to session_t
- server_rx/tx_fifo to rx/tx_fifo
- stream_session.h to session_types.h
- update copyright
Change-Id: I414097c6e28bcbea866fbf13b8773c7db3f49325
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/session/application_interface.c')
-rw-r--r-- | src/vnet/session/application_interface.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/vnet/session/application_interface.c b/src/vnet/session/application_interface.c index c3c84fd8da9..0245f58d3b1 100644 --- a/src/vnet/session/application_interface.c +++ b/src/vnet/session/application_interface.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016 Cisco and/or its affiliates. + * Copyright (c) 2016-2019 Cisco and/or its affiliates. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: @@ -120,7 +120,7 @@ int api_parse_session_handle (u64 handle, u32 * session_index, u32 * thread_index) { session_manager_main_t *smm = vnet_get_session_manager_main (); - stream_session_t *pool; + session_t *pool; *thread_index = handle & 0xFFFFFFFF; *session_index = handle >> 32; @@ -245,7 +245,7 @@ vnet_bind_inline (vnet_bind_args_t * a) if (ll_handle != SESSION_INVALID_HANDLE) { local_session_t *ll; - stream_session_t *tl; + session_t *tl; ll = application_get_local_listener_w_handle (ll_handle); tl = listen_session_get_from_handle (a->handle); if (ll->transport_listener_index == ~0) @@ -287,7 +287,7 @@ application_connect (vnet_connect_args_t * a) { app_worker_t *server_wrk, *client_wrk; u32 table_index, server_index, li; - stream_session_t *listener; + session_t *listener; application_t *client, *server; local_session_t *ll; u8 fib_proto; @@ -326,7 +326,7 @@ application_connect (vnet_connect_args_t * a) { server = application_get (server_index); ll = application_get_local_listen_session (server, li); - listener = (stream_session_t *) ll; + listener = (session_t *) ll; server_wrk = application_listener_select_worker (listener, 1 /* is_local */ ); return application_local_session_connect (client_wrk, @@ -603,7 +603,7 @@ int vnet_unbind_uri (vnet_unbind_args_t * a) { session_endpoint_cfg_t sep = SESSION_ENDPOINT_CFG_NULL; - stream_session_t *listener; + session_t *listener; u32 table_index; int rv; @@ -657,7 +657,7 @@ vnet_disconnect_session (vnet_disconnect_args_t * a) else { app_worker_t *app_wrk; - stream_session_t *s; + session_t *s; s = session_get_from_handle_if_valid (a->handle); if (!s) |