diff options
author | Vlad Yasevich <vladislav.yasevich@hp.com> | 2007-10-09 04:15:59 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:51:29 -0400 |
commit | 1f485649f52929d9937b346a920a522a7363e202 (patch) | |
tree | 663ac69ba7fff641e243306d7aad5b95378e4d6d /net/sctp/objcnt.c | |
parent | f7b0e93ba1a484700bd1b0e36bdaddaf4eb51b0b (diff) |
[SCTP]: Implement SCTP-AUTH internals
This patch implements the internals operations of the AUTH, such as
key computation and storage. It also adds necessary variables to
the SCTP data structures.
Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/objcnt.c')
-rw-r--r-- | net/sctp/objcnt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sctp/objcnt.c b/net/sctp/objcnt.c index fcfb9d806de1..2cf6ad6ff8ce 100644 --- a/net/sctp/objcnt.c +++ b/net/sctp/objcnt.c | |||
@@ -58,6 +58,7 @@ SCTP_DBG_OBJCNT(chunk); | |||
58 | SCTP_DBG_OBJCNT(addr); | 58 | SCTP_DBG_OBJCNT(addr); |
59 | SCTP_DBG_OBJCNT(ssnmap); | 59 | SCTP_DBG_OBJCNT(ssnmap); |
60 | SCTP_DBG_OBJCNT(datamsg); | 60 | SCTP_DBG_OBJCNT(datamsg); |
61 | SCTP_DBG_OBJCNT(keys); | ||
61 | 62 | ||
62 | /* An array to make it easy to pretty print the debug information | 63 | /* An array to make it easy to pretty print the debug information |
63 | * to the proc fs. | 64 | * to the proc fs. |
@@ -73,6 +74,7 @@ static sctp_dbg_objcnt_entry_t sctp_dbg_objcnt[] = { | |||
73 | SCTP_DBG_OBJCNT_ENTRY(addr), | 74 | SCTP_DBG_OBJCNT_ENTRY(addr), |
74 | SCTP_DBG_OBJCNT_ENTRY(ssnmap), | 75 | SCTP_DBG_OBJCNT_ENTRY(ssnmap), |
75 | SCTP_DBG_OBJCNT_ENTRY(datamsg), | 76 | SCTP_DBG_OBJCNT_ENTRY(datamsg), |
77 | SCTP_DBG_OBJCNT_ENTRY(keys), | ||
76 | }; | 78 | }; |
77 | 79 | ||
78 | /* Callback from procfs to read out objcount information. | 80 | /* Callback from procfs to read out objcount information. |