lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 8 Feb 2007 23:19:09 +0300
From:	Alexey Dobriyan <adobriyan@...il.com>
To:	ahendry <ahendry@...c.com.au>
Cc:	linux-x25@...r.kernel.org, eis@...y.hanse.de,
	linux-kernel@...r.kernel.org, netdev@...r.kernel.org
Subject: Re: [PATCH 2/3] X.25: Adds /proc/sys/net/x25/x25_forward to control forwarding.

On Thu, Feb 08, 2007 at 10:14:31AM +1100, ahendry wrote:
> echo "1" > /proc/sys/net/x25/x25_forward
> To turn on x25_forwarding, defaults to off

> --- linux-2.6.20-vanilla/include/linux/sysctl.h
> +++ linux-2.6.20/include/linux/sysctl.h
> @@ -699,7 +699,8 @@ enum {
>  	NET_X25_CALL_REQUEST_TIMEOUT=2,
>  	NET_X25_RESET_REQUEST_TIMEOUT=3,
>  	NET_X25_CLEAR_REQUEST_TIMEOUT=4,
> -	NET_X25_ACK_HOLD_BACK_TIMEOUT=5
> +	NET_X25_ACK_HOLD_BACK_TIMEOUT=5,
> +	NET_X25_FORWARD=6
>  };

> --- linux-2.6.20-vanilla/net/x25/sysctl_net_x25.c
> +++ linux-2.6.20/net/x25/sysctl_net_x25.c
> @@ -73,6 +73,14 @@ static struct ctl_table x25_table[] = {
>  		.extra1 =	&min_timer,
>  		.extra2 =	&max_timer,
>  	},
> +	{
> +		.ctl_name =	NET_X25_FORWARD,
> +		.procname =	"x25_forward",
> +		.data = 	&sysctl_x25_forward,
> +		.maxlen = 	sizeof(int),
> +		.mode = 	0644,
> +		.proc_handler = &proc_dointvec,
> +	},

Reserving binary sysctl number and not defining ->strategy is strange.
;-)

-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ