mirror of
https://github.com/InfrastructureServices/vsftpd.git
synced 2025-04-19 01:24:02 +03:00
19 lines
465 B
C
19 lines
465 B
C
#ifndef VSF_FTPPOLICY_H
|
|
#define VSF_FTPPOLICY_H
|
|
|
|
/* Forward delcarations */
|
|
struct pt_sandbox;
|
|
struct vsf_session;
|
|
|
|
/* policy_setup()
|
|
* PURPOSE
|
|
* Sets up a sandbox policy according to the currently enabled options.
|
|
* PARAMETERS
|
|
* p_sandbox - the sandbox to set the policy on
|
|
* p_sess - current vsftpd session object
|
|
*/
|
|
void policy_setup(struct pt_sandbox* p_sandbox,
|
|
const struct vsf_session* p_sess);
|
|
|
|
#endif /* VSF_FTPPOLICY_H */
|