diff options
author | Florin Coras <fcoras@cisco.com> | 2019-04-24 14:44:46 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-04-25 18:05:16 +0000 |
commit | 88001c64e9e5d0dc08e303857ca34687454ebf10 (patch) | |
tree | f747dabb08b764514c3465ca854ebed87031e8bb /src/vnet/session/application.h | |
parent | 1ccbbfbf972eefc87491dd7c260bc0c4dcef8ac9 (diff) |
session: cleanup segment manager and fifo segment
Change-Id: I984f347fb465c0c405cef668d8690457e81788e2
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/session/application.h')
-rw-r--r-- | src/vnet/session/application.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vnet/session/application.h b/src/vnet/session/application.h index 0cf97a75742..4485b743589 100644 --- a/src/vnet/session/application.h +++ b/src/vnet/session/application.h @@ -92,7 +92,7 @@ typedef struct application_ session_cb_vft_t cb_fns; /** Segment manager properties. Shared by all segment managers */ - segment_manager_properties_t sm_properties; + segment_manager_props_t sm_properties; /** Pool of mappings that keep track of workers associated to this app */ app_worker_map_t *worker_maps; @@ -197,10 +197,10 @@ u8 application_has_global_scope (application_t * app); void application_setup_proxy (application_t * app); void application_remove_proxy (application_t * app); -segment_manager_properties_t *application_get_segment_manager_properties (u32 - app_index); +segment_manager_props_t *application_get_segment_manager_properties (u32 + app_index); -segment_manager_properties_t +segment_manager_props_t * application_segment_manager_properties (application_t * app); /* |