summaryrefslogtreecommitdiffstats
path: root/sys/netinet
diff options
context:
space:
mode:
authorsos <sos@FreeBSD.org>1996-10-22 22:26:02 +0000
committersos <sos@FreeBSD.org>1996-10-22 22:26:02 +0000
commita197836ae2c867853f50806481014a7309e0c3da (patch)
tree0915c44dbe9a838a238eff81903fc900d3a60f59 /sys/netinet
parent716fcd711804c413d622869d5e99f2fd11e6d680 (diff)
downloadFreeBSD-src-a197836ae2c867853f50806481014a7309e0c3da.zip
FreeBSD-src-a197836ae2c867853f50806481014a7309e0c3da.tar.gz
Changed args to the nat functions.
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/in.h4
-rw-r--r--sys/netinet/ip_input.c4
-rw-r--r--sys/netinet/ip_output.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/netinet/in.h b/sys/netinet/in.h
index 882f4df..21cfeef 100644
--- a/sys/netinet/in.h
+++ b/sys/netinet/in.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)in.h 8.3 (Berkeley) 1/3/94
- * $Id: in.h,v 1.20 1996/08/21 21:36:53 sos Exp $
+ * $Id: in.h,v 1.21 1996/10/19 20:23:12 alex Exp $
*/
#ifndef _NETINET_IN_H_
@@ -335,7 +335,7 @@ extern ip_fw_chk_t *ip_fw_chk_ptr;
extern ip_fw_ctl_t *ip_fw_ctl_ptr;
/* IP NAT hooks */
-typedef int ip_nat_t __P((struct ip**, struct mbuf**, int));
+typedef int ip_nat_t __P((struct ip**, struct mbuf**, struct ifnet*, int));
typedef int ip_nat_ctl_t __P((int, struct mbuf**));
extern ip_nat_t *ip_nat_ptr;
extern ip_nat_ctl_t *ip_nat_ctl_ptr;
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c
index 9b49660..d5c904d 100644
--- a/sys/netinet/ip_input.c
+++ b/sys/netinet/ip_input.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ip_input.c 8.2 (Berkeley) 1/4/94
- * $Id: ip_input.c,v 1.47 1996/09/08 13:45:49 davidg Exp $
+ * $Id: ip_input.c,v 1.48 1996/10/07 19:21:45 wollman Exp $
* $ANA: ip_input.c,v 1.5 1996/09/18 14:34:59 wollman Exp $
*/
@@ -329,7 +329,7 @@ tooshort:
}
}
- if (ip_nat_ptr && !(*ip_nat_ptr)(&ip, &m, IP_NAT_IN))
+ if (ip_nat_ptr && !(*ip_nat_ptr)(&ip, &m, m->m_pkthdr.rcvif, IP_NAT_IN))
return;
#endif
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c
index 3b733fa..85cd563 100644
--- a/sys/netinet/ip_output.c
+++ b/sys/netinet/ip_output.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ip_output.c 8.3 (Berkeley) 1/21/94
- * $Id: ip_output.c,v 1.42 1996/08/21 21:37:04 sos Exp $
+ * $Id: ip_output.c,v 1.43 1996/10/07 19:21:46 wollman Exp $
*/
#define _IP_VHL
@@ -340,7 +340,7 @@ sendit:
*/
#ifdef COMPAT_IPFW
- if (ip_nat_ptr && !(*ip_nat_ptr)(&ip, &m, IP_NAT_OUT)) {
+ if (ip_nat_ptr && !(*ip_nat_ptr)(&ip, &m, ifp, IP_NAT_OUT)) {
error = EACCES;
goto done;
}
OpenPOWER on IntegriCloud