aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/sctp_sysctl.h
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2014-08-04 20:07:35 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2014-08-04 20:07:35 +0000
commit317e00ef863d88f89a17d10ce24031e1a0eac010 (patch)
treea943ca14889fa90564a6d1f712a78e122a1aaefd /sys/netinet/sctp_sysctl.h
parent76504ce978eb237d4fb5512ce9fc30209135665c (diff)
downloadsrc-317e00ef863d88f89a17d10ce24031e1a0eac010.tar.gz
src-317e00ef863d88f89a17d10ce24031e1a0eac010.zip
Add support for the SCTP_RECONFIG_SUPPORTED and the corresponding
sysctl controlling the negotiation of the RE-CONFIG extension. MFC after: 3 days
Notes
Notes: svn path=/head/; revision=269527
Diffstat (limited to 'sys/netinet/sctp_sysctl.h')
-rw-r--r--sys/netinet/sctp_sysctl.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/netinet/sctp_sysctl.h b/sys/netinet/sctp_sysctl.h
index 741d0316c253..bcf270f36c08 100644
--- a/sys/netinet/sctp_sysctl.h
+++ b/sys/netinet/sctp_sysctl.h
@@ -46,6 +46,7 @@ struct sctp_sysctl {
uint32_t sctp_multiple_asconfs;
uint32_t sctp_ecn_enable;
uint32_t sctp_pr_enable;
+ uint32_t sctp_reconfig_enable;
uint32_t sctp_nrsack_enable;
uint32_t sctp_pktdrop_enable;
uint32_t sctp_fr_max_burst_default;
@@ -161,8 +162,14 @@ struct sctp_sysctl {
#define SCTPCTL_PR_ENABLE_MAX 1
#define SCTPCTL_PR_ENABLE_DEFAULT 1
+/* reconfig_enable: Enable SCTP RE-CONFIG */
+#define SCTPCTL_RECONFIG_ENABLE_DESC "Enable SCTP RE-CONFIG"
+#define SCTPCTL_RECONFIG_ENABLE_MIN 0
+#define SCTPCTL_RECONFIG_ENABLE_MAX 1
+#define SCTPCTL_RECONFIG_ENABLE_DEFAULT 1
+
/* nrsack_enable: Enable NR_SACK */
-#define SCTPCTL_NRSACK_ENABLE_DESC "Enable NR_SACK"
+#define SCTPCTL_NRSACK_ENABLE_DESC "Enable SCTP NR-SACK"
#define SCTPCTL_NRSACK_ENABLE_MIN 0
#define SCTPCTL_NRSACK_ENABLE_MAX 1
#define SCTPCTL_NRSACK_ENABLE_DEFAULT 0