From 3c293c52fd17eb62317ce21a6a3613d80b6eea80 Mon Sep 17 00:00:00 2001 From: ru Date: Tue, 27 Nov 2001 11:00:16 +0000 Subject: Fixed (local) style bugs in previous revision. --- sbin/natd/natd.8 | 4 +++- sbin/natd/natd.c | 12 +++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) (limited to 'sbin/natd') diff --git a/sbin/natd/natd.8 b/sbin/natd/natd.8 index 20961a2..a6d927b 100644 --- a/sbin/natd/natd.8 +++ b/sbin/natd/natd.8 @@ -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 diff --git a/sbin/natd/natd.c b/sbin/natd/natd.c index b5e65fc..351d652 100644 --- a/sbin/natd/natd.c +++ b/sbin/natd/natd.c @@ -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; } } -- cgit v1.1