1 #ifndef VSF_SSLSLAVE_H
2 #define VSF_SSLSLAVE_H
3 
4 struct vsf_session;
5 
6 /* ssl_slave()
7  * PURPOSE
8  * An internal function that takes care of running the "SSL slave" process. It
9  * is needed because the initial SSL handshake state may belong to a different
10  * process that the process running the FTP protocol.
11  * PARAMETERS
12  * p_sess       - the session object
13  */
14 void ssl_slave(struct vsf_session* p_sess);
15 
16 #endif /* VSF_SSLSLAVE_H */
17 
18