X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=support%2Fmisc%2Ftcpwrapper.c;fp=support%2Fmisc%2Ftcpwrapper.c;h=1da60204c541a3ee178d9a8ec869bc277387de93;hp=a361496e25720b5f8cf56f7e06dabaa3689bc4f5;hb=06da4cfd46942acaaa5bd2e7933fd290701d186d;hpb=e34cc88a18db9dc0b620691990ad5047b796d209 diff --git a/support/misc/tcpwrapper.c b/support/misc/tcpwrapper.c index a361496..1da6020 100644 --- a/support/misc/tcpwrapper.c +++ b/support/misc/tcpwrapper.c @@ -60,8 +60,16 @@ static void logit(int severity, struct sockaddr_in *addr, u_long procnum, u_long prognum, char *text); static int check_files(void); +/* + * These need to exist since they are externed + * public header files. + */ +int verboselog = 0; +int allow_severity = LOG_INFO; +int deny_severity = LOG_WARNING; + #define log_bad_host(addr, proc, prog) \ - logit(LOG_WARNING, addr, proc, prog, "request from unauthorized host") + logit(deny_severity, addr, proc, prog, "request from unauthorized host") #define ALLOW 1 #define DENY 0