Deleted Added
full compact
34c34
< __FBSDID("$FreeBSD: head/sys/netinet/raw_ip.c 197227 2009-09-15 19:18:34Z qingli $");
---
> __FBSDID("$FreeBSD: head/sys/netinet/raw_ip.c 197952 2009-10-11 05:59:43Z julian $");
87c87,88
< int (*ip_fw_ctl_ptr)(struct sockopt *) = NULL;
---
> VNET_DEFINE(ip_fw_chk_ptr_t, ip_fw_chk_ptr) = NULL;
> VNET_DEFINE(ip_fw_ctl_ptr_t, ip_fw_ctl_ptr) = NULL;
89d89
< int (*ip_fw_chk_ptr)(struct ip_fw_args *args) = NULL;
526,527c526,527
< if (ip_fw_ctl_ptr != NULL)
< error = ip_fw_ctl_ptr(sopt);
---
> if (V_ip_fw_ctl_ptr != NULL)
> error = V_ip_fw_ctl_ptr(sopt);
587,588c587,588
< if (ip_fw_ctl_ptr != NULL)
< error = ip_fw_ctl_ptr(sopt);
---
> if (V_ip_fw_ctl_ptr != NULL)
> error = V_ip_fw_ctl_ptr(sopt);