1#ifndef VSF_PRELOGIN_H
2#define VSF_PRELOGIN_H
3
4struct vsf_session;
5
6/* init_connection()
7 * PURPOSE
8 * Called as an entry point to FTP protocol processing, when a client connects.
9 * This function will emit the FTP greeting, then start talking FTP protocol
10 * to the client.
11 * PARAMETERS
12 * p_sess         - the current session object
13 */
14void init_connection(struct vsf_session* p_sess);
15
16#endif /* VSF_PRELOGIN_H */
17