diff options
author | Vlad Yasevich <vladislav.yasevich@hp.com> | 2007-09-16 22:31:35 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:30 -0400 |
commit | a29a5bd4f5c3e8ba2e89688feab8b01c44f1654f (patch) | |
tree | 2b98f0d572fee7dff79373c64f95a61f940db7e9 /net/sctp/sysctl.c | |
parent | 1f485649f52929d9937b346a920a522a7363e202 (diff) |
[SCTP]: Implement SCTP-AUTH initializations.
The patch initializes AUTH related members of the generic SCTP
structures and provides a way to enable/disable auth extension.
Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/sysctl.c')
-rw-r--r-- | net/sctp/sysctl.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/net/sctp/sysctl.c b/net/sctp/sysctl.c index 39b10ee2f017..0669778e4335 100644 --- a/net/sctp/sysctl.c +++ b/net/sctp/sysctl.c | |||
@@ -254,6 +254,15 @@ static ctl_table sctp_table[] = { | |||
254 | .mode = 0644, | 254 | .mode = 0644, |
255 | .proc_handler = &proc_dointvec, | 255 | .proc_handler = &proc_dointvec, |
256 | }, | 256 | }, |
257 | { | ||
258 | .ctl_name = CTL_UNNUMBERED, | ||
259 | .procname = "auth_enable", | ||
260 | .data = &sctp_auth_enable, | ||
261 | .maxlen = sizeof(int), | ||
262 | .mode = 0644, | ||
263 | .proc_handler = &proc_dointvec, | ||
264 | .strategy = &sysctl_intvec | ||
265 | }, | ||
257 | { .ctl_name = 0 } | 266 | { .ctl_name = 0 } |
258 | }; | 267 | }; |
259 | 268 | ||