diff -urN linux-2.4.19-pre5-hidden-fixed-pspa/include/linux/sysctl.h linux-2.4.19-pre5-hidden-fixed-pspa-fixed/include/linux/sysctl.h --- linux-2.4.19-pre5-hidden-fixed-pspa/include/linux/sysctl.h Sun Mar 31 17:21:02 2002 +++ linux-2.4.19-pre5-hidden-fixed-pspa-fixed/include/linux/sysctl.h Sun Mar 31 17:22:34 2002 @@ -291,7 +291,10 @@ NET_IPV4_NONLOCAL_BIND=88, NET_IPV4_ICMP_RATELIMIT=89, NET_IPV4_ICMP_RATEMASK=90, - NET_TCP_TW_REUSE=91 + NET_TCP_TW_REUSE=91, + NET_IP_PORT_ACL_GID=92, + NET_IP_SOCK_RAW_GID=93, + NET_IP_SOCK_PACKET_GID=94 }; enum { diff -urN linux-2.4.19-pre5-hidden-fixed-pspa/net/ipv4/sysctl_net_ipv4.c linux-2.4.19-pre5-hidden-fixed-pspa-fixed/net/ipv4/sysctl_net_ipv4.c --- linux-2.4.19-pre5-hidden-fixed-pspa/net/ipv4/sysctl_net_ipv4.c Sun Mar 31 17:21:02 2002 +++ linux-2.4.19-pre5-hidden-fixed-pspa-fixed/net/ipv4/sysctl_net_ipv4.c Sun Mar 31 17:24:47 2002 @@ -229,6 +229,14 @@ &sysctl_icmp_ratemask, sizeof(int), 0644, NULL, &proc_dointvec}, {NET_TCP_TW_REUSE, "tcp_tw_reuse", &sysctl_tcp_tw_reuse, sizeof(int), 0644, NULL, &proc_dointvec}, +#ifdef CONFIG_PORT_ACLS + {NET_IP_PORT_ACL_GID, "ip_port_acl_gid", + &sysctl_port_acl_gid, sizeof(int), 0644, NULL, &proc_dointvec}, +#endif +#ifdef CONFIG_SOCK_RAW_GROUP + {NET_IP_SOCK_RAW_GID, "ip_sock_raw_gid", + &sysctl_sock_raw_gid, sizeof(int), 0644, NULL, &proc_dointvec}, +#endif {0} };