diff options
author | rrs <rrs@FreeBSD.org> | 2007-06-09 13:46:57 +0000 |
---|---|---|
committer | rrs <rrs@FreeBSD.org> | 2007-06-09 13:46:57 +0000 |
commit | 4ecfa17662f61c5918ac2f9a900430917a2de0d2 (patch) | |
tree | 1afec9873efbc725a9bb5c46d940784789c46118 /sys/netinet/sctp_auth.h | |
parent | af285a5d356346bc793bdb7693bb0ab8399d24b9 (diff) | |
download | FreeBSD-src-4ecfa17662f61c5918ac2f9a900430917a2de0d2.zip FreeBSD-src-4ecfa17662f61c5918ac2f9a900430917a2de0d2.tar.gz |
- fix send_failed notification contents
- Reorder send failed to be in correct order.
- Fixed calulation of init-ack to be right off
mbuf lengths instead of the precalculated value. This
will fix one 64 bit platform issue.
Diffstat (limited to 'sys/netinet/sctp_auth.h')
-rw-r--r-- | sys/netinet/sctp_auth.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/sctp_auth.h b/sys/netinet/sctp_auth.h index 532af90..be7e6a0 100644 --- a/sys/netinet/sctp_auth.h +++ b/sys/netinet/sctp_auth.h @@ -182,7 +182,7 @@ extern int sctp_auth_is_supported_hmac(sctp_hmaclist_t * list, uint16_t id); /* mbuf versions */ extern uint32_t sctp_hmac_m(uint16_t hmac_algo, uint8_t * key, uint32_t keylen, - struct mbuf *m, uint32_t m_offset, uint8_t * digest); + struct mbuf *m, uint32_t m_offset, uint8_t * digest, uint32_t trailer); extern uint32_t sctp_compute_hmac_m(uint16_t hmac_algo, sctp_key_t * key, struct mbuf *m, uint32_t m_offset, uint8_t * digest); |