aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/sctp_os_bsd.h
diff options
context:
space:
mode:
authorRandall Stewart <rrs@FreeBSD.org>2007-04-03 11:15:32 +0000
committerRandall Stewart <rrs@FreeBSD.org>2007-04-03 11:15:32 +0000
commitbff64a4db3bb361cddf2a3b1265ded2de18307b3 (patch)
treea29f21245853449d39286dd5084db358d0ca42a9 /sys/netinet/sctp_os_bsd.h
parente39a0a37cf77deec34abdfbcfd64c9a1291b2da5 (diff)
downloadsrc-bff64a4db3bb361cddf2a3b1265ded2de18307b3.tar.gz
src-bff64a4db3bb361cddf2a3b1265ded2de18307b3.zip
- fixed several places where we did not release INP locks.
- fixed a refcount bug in the new ifa structures. - use vrf's from default stcb or inp whenever possible. - Address limits raised to account for a full IP fragmented packet (1000 addresses). - flight size correcting updated to include one message only and to handle case where the peer does not cumack the next segment aka lists 1/1 in sack blocks.. - Various bad init/init-ack handling could cause a panic since we tried to unlock the destroyed mutex. Fixes so we properly exit when we need to destroy an assoc. (Found by Cisco DevTest team :D) - name rename in src-addr-selection from pass to sifa. - route structure typedef'd to allow different platforms and updated into sctp_os_bsd file. - Max retransmissions a chunk can be made added. Reviewed by: gnn
Notes
Notes: svn path=/head/; revision=168299
Diffstat (limited to 'sys/netinet/sctp_os_bsd.h')
-rw-r--r--sys/netinet/sctp_os_bsd.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/netinet/sctp_os_bsd.h b/sys/netinet/sctp_os_bsd.h
index e74ccfa1250f..81e028ca681b 100644
--- a/sys/netinet/sctp_os_bsd.h
+++ b/sys/netinet/sctp_os_bsd.h
@@ -93,10 +93,8 @@ __FBSDID("$FreeBSD$");
#endif /* INET6 */
-
#include <netinet/ip_options.h>
-
#ifndef in6pcb
#define in6pcb inpcb
#endif
@@ -270,6 +268,12 @@ typedef struct callout sctp_os_timer_t;
#define SCTP_SB_LIMIT_SND(so) so->so_snd.sb_hiwat
/*
+ * routes, output, etc.
+ */
+typedef struct route sctp_route_t;
+
+
+/*
* SCTP AUTH
*/
#define HAVE_SHA2