diff options
author | Vlad Yasevich <vladislav.yasevich@hp.com> | 2007-09-17 04:31:35 +0200 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-11 01:51:30 +0200 |
commit | a29a5bd4f5c3e8ba2e89688feab8b01c44f1654f (patch) | |
tree | 2b98f0d572fee7dff79373c64f95a61f940db7e9 /net/sctp/protocol.c | |
parent | [SCTP]: Implement SCTP-AUTH internals (diff) | |
download | linux-a29a5bd4f5c3e8ba2e89688feab8b01c44f1654f.tar.xz linux-a29a5bd4f5c3e8ba2e89688feab8b01c44f1654f.zip |
[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/protocol.c')
-rw-r--r-- | net/sctp/protocol.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c index 3ec8b12b6da4..4e6b59e8b695 100644 --- a/net/sctp/protocol.c +++ b/net/sctp/protocol.c @@ -1185,6 +1185,9 @@ SCTP_STATIC __init int sctp_init(void) /* Enable PR-SCTP by default. */ sctp_prsctp_enable = 1; + /* Disable AUTH by default. */ + sctp_auth_enable = 0; + sctp_sysctl_register(); INIT_LIST_HEAD(&sctp_address_families); |