From 692b9498ee5511a17bfbc3a2c6e87339aa3b8df8 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Fri, 12 Jul 2019 15:01:53 -0700 Subject: session: allow transports to generate closed notifications In contrast to the closing notification, whereby a transport informs the session layer that is beginning the closing procedure, this allows transports to notify the session layer of the fact that the transport is "fully" closed, i.e., it expects no more data. Also: - adds app closed state for sessions - changes tcp to have it notify when an active close has finished Type: feature Change-Id: I13c738006c03f85015e05ab82843a33a69382aaf Signed-off-by: Florin Coras --- src/vnet/session/application.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/vnet/session/application.h') diff --git a/src/vnet/session/application.h b/src/vnet/session/application.h index 17f2f4a076f..81be238094e 100644 --- a/src/vnet/session/application.h +++ b/src/vnet/session/application.h @@ -250,6 +250,8 @@ int app_worker_init_connected (app_worker_t * app_wrk, session_t * s); int app_worker_connect_notify (app_worker_t * app_wrk, session_t * s, u32 opaque); int app_worker_close_notify (app_worker_t * app_wrk, session_t * s); +int app_worker_transport_closed_notify (app_worker_t * app_wrk, + session_t * s); int app_worker_reset_notify (app_worker_t * app_wrk, session_t * s); int app_worker_cleanup_notify (app_worker_t * app_wrk, session_t * s, session_cleanup_ntf_t ntf); -- cgit 1.2.3-korg