~ubuntu-branches/ubuntu/trusty/vsftpd/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef VSF_PRELOGIN_H
#define VSF_PRELOGIN_H

struct vsf_session;

/* init_connection()
 * PURPOSE
 * Called as an entry point to FTP protocol processing, when a client connects.
 * This function will emit the FTP greeting, then start talking FTP protocol
 * to the client.
 * PARAMETERS
 * p_sess         - the current session object
 */
void init_connection(struct vsf_session* p_sess);

#endif /* VSF_PRELOGIN_H */