Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 May 2009 16:42:45 +0000 (UTC)
From:      Randall Stewart <rrs@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r191890 - head/sys/netinet
Message-ID:  <200905071642.n47GgjmJ061754@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rrs
Date: Thu May  7 16:42:45 2009
New Revision: 191890
URL: http://svn.freebsd.org/changeset/base/191890

Log:
  ABI expansions to hopefully future-proof our MIB/netstat code for 8.0

Modified:
  head/sys/netinet/sctp_uio.h

Modified: head/sys/netinet/sctp_uio.h
==============================================================================
--- head/sys/netinet/sctp_uio.h	Thu May  7 16:31:50 2009	(r191889)
+++ head/sys/netinet/sctp_uio.h	Thu May  7 16:42:45 2009	(r191890)
@@ -764,6 +764,8 @@ struct sctp_timeval {
 };
 
 struct sctpstat {
+	struct sctp_timeval sctps_discontinuitytime;	/* sctpStats 18
+							 * (TimeStamp) */
 	/* MIB according to RFC 3873 */
 	uint32_t sctps_currestab;	/* sctpStats  1   (Gauge32) */
 	uint32_t sctps_activeestab;	/* sctpStats  2 (Counter32) */
@@ -948,8 +950,8 @@ struct sctpstat {
 	uint32_t sctps_fwdtsn_map_over;	/* number of map array over-runs via
 					 * fwd-tsn's */
 
-	struct sctp_timeval sctps_discontinuitytime;	/* sctpStats 18
-							 * (TimeStamp) */
+	uint32_t sctps_reserved[32];	/* Future ABI compat - remove int's
+					 * from here when adding new */
 };
 
 #define SCTP_STAT_INCR(_x) SCTP_STAT_INCR_BY(_x,1)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905071642.n47GgjmJ061754>