1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

Fixed (local) style bugs in previous revision.

This commit is contained in:
Ruslan Ermilov 2001-11-27 11:00:16 +00:00
parent 8573e68110
commit 3843533e18
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=86954
2 changed files with 10 additions and 6 deletions

View File

@ -463,7 +463,9 @@ rules starting from the rule number
will be used for punching firewall holes.
The range will be cleared for all rules on startup.
.It Fl log_ipfw_denied
Log when a packet can't be re-injected because a ipfw rule deny it.
Log when a packet can not be re-injected because an
.Xr ipfw 8
rule blocks it.
.El
.Sh RUNNING NATD
The following steps are necessary before attempting to run

View File

@ -126,7 +126,7 @@ static int packetDirection;
static int dropIgnoredIncoming;
static int logDropped;
static int logFacility;
static int log_ipfw_denied;
static int logIpfwDenied;
int main (int argc, char** argv)
{
@ -161,7 +161,7 @@ int main (int argc, char** argv)
dynamicMode = 0;
logDropped = 0;
logFacility = LOG_DAEMON;
log_ipfw_denied = 0;
logIpfwDenied = 0;
/*
* Mark packet buffer empty.
*/
@ -616,7 +616,7 @@ static void FlushPacketBuffer (int fd)
(struct ip*) packetBuf,
ifMTU - aliasOverhead);
}
else if (errno == EACCES && log_ipfw_denied) {
else if (errno == EACCES && logIpfwDenied) {
sprintf (msgBuf, "failed to write packet back");
Warn (msgBuf);
@ -1257,7 +1257,7 @@ static void ParseOption (const char* option, const char* parms)
break;
case LogDenied:
logDropped = 1;
logDropped = yesNoValue;
break;
case LogFacility:
@ -1283,8 +1283,10 @@ static void ParseOption (const char* option, const char* parms)
case PunchFW:
SetupPunchFW(strValue);
break;
case LogIpfwDenied:
log_ipfw_denied=1;
logIpfwDenied = yesNoValue;;
break;
}
}