1 #ifndef VSF_LOGINPRIVPARENT_H
2 #define VSF_LOGINPRIVPARENT_H
3 
4 struct vsf_session;
5 
6 /* vsf_priv_parent_postlogin()
7  * PURPOSE
8  * Called in the two process security model to commence "listening" for
9  * requests from the unprivileged child.
10  * PARAMETERS
11  * p_sess       - the current session object
12  */
13 void vsf_priv_parent_postlogin(struct vsf_session* p_sess);
14 
15 #endif /* VSF_LOGINPRIVPARENT_H */
16 
17