代码拉取完成,页面将自动刷新
/*
* Part of Very Secure FTPd
* Licence: GPL v2
* Author: Chris Evans
* tcpwrap.c
*
* Routines to encapsulate the usage of tcp_wrappers.
*/
#include "tcpwrap.h"
#include "builddefs.h"
#include "utility.h"
#include "sysutil.h"
#ifdef VSF_BUILD_TCPWRAPPERS
#include <tcpd.h>
#endif
#ifdef VSF_BUILD_TCPWRAPPERS
#include <sys/syslog.h>
int deny_severity = LOG_WARNING;
int allow_severity = LOG_INFO;
int
vsf_tcp_wrapper_ok(int remote_fd)
{
struct request_info req;
vsf_sysutil_openlog(0);
request_init(&req, RQ_DAEMON, "vsftpd", RQ_FILE, remote_fd, 0);
fromhost(&req);
if (!hosts_access(&req))
{
vsf_sysutil_closelog();
return 0;
}
vsf_sysutil_closelog();
return 1;
}
#else /* VSF_BUILD_TCPWRAPPERS */
int
vsf_tcp_wrapper_ok(int remote_fd)
{
(void) remote_fd;
die("tcp_wrappers is set to YES but no tcp wrapper support compiled in");
return 0;
}
#endif /* VSF_BUILD_TCPWRAPPERS */
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。