diff options
| author | Randall Stewart <rrs@FreeBSD.org> | 2007-07-14 09:36:28 +0000 |
|---|---|---|
| committer | Randall Stewart <rrs@FreeBSD.org> | 2007-07-14 09:36:28 +0000 |
| commit | b54d3a6c48b9608d35248ff39cba565f8bbbfb00 (patch) | |
| tree | 008308315d74a9df2eec618692844a82f1ace245 /sys/netinet/sctp_constants.h | |
| parent | 46dd1e6ee739ed7df6e956613c42035d60d78dc5 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/sctp_constants.h')
| -rw-r--r-- | sys/netinet/sctp_constants.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/netinet/sctp_constants.h b/sys/netinet/sctp_constants.h index bcf1aae90add..477244bfda07 100644 --- a/sys/netinet/sctp_constants.h +++ b/sys/netinet/sctp_constants.h @@ -83,6 +83,11 @@ __FBSDID("$FreeBSD$"); */ #define SCTP_DEFAULT_VRF_SIZE 4 +/* JRS - Values defined for the HTCP algorithm */ +#define ALPHA_BASE (1<<7) /* 1.0 with shift << 7 */ +#define BETA_MIN (1<<6) /* 0.5 with shift << 7 */ +#define BETA_MAX 102 /* 0.8 with shift << 7 */ + /* Places that CWND log can happen from */ #define SCTP_CWND_LOG_FROM_FR 1 #define SCTP_CWND_LOG_FROM_RTX 2 @@ -483,6 +488,8 @@ __FBSDID("$FreeBSD$"); #define SCTP_ADDR_DOUBLE_SWITCH 0x100 #define SCTP_ADDR_UNCONFIRMED 0x200 #define SCTP_ADDR_REQ_PRIMARY 0x400 +/* JRS 5/13/07 - Added potentially failed state for CMT PF */ +#define SCTP_ADDR_PF 0x800 #define SCTP_REACHABLE_MASK 0x203 /* bound address types (e.g. valid address types to allow) */ |
