svn commit: r202516 - head/sys/netinet

Randall Stewart rrs at FreeBSD.org
Sun Jan 17 19:17:16 UTC 2010


Author: rrs
Date: Sun Jan 17 19:17:16 2010
New Revision: 202516
URL: http://svn.freebsd.org/changeset/base/202516

Log:
  Remove strange APPLE define that leaked
  through the scrubber scripts. Scripts are
  now fixed so this won't happen again.

Modified:
  head/sys/netinet/sctp_constants.h

Modified: head/sys/netinet/sctp_constants.h
==============================================================================
--- head/sys/netinet/sctp_constants.h	Sun Jan 17 18:37:36 2010	(r202515)
+++ head/sys/netinet/sctp_constants.h	Sun Jan 17 19:17:16 2010	(r202516)
@@ -276,28 +276,16 @@ __FBSDID("$FreeBSD$");
 #define SCTP_SCALE_FOR_ADDR	2
 
 /* default AUTO_ASCONF mode enable(1)/disable(0) value (sysctl) */
-#if defined (__APPLE__) && !defined(SCTP_APPLE_AUTO_ASCONF)
-#define SCTP_DEFAULT_AUTO_ASCONF        0
-#else
 #define SCTP_DEFAULT_AUTO_ASCONF	1
-#endif
 
 /* default MULTIPLE_ASCONF mode enable(1)/disable(0) value (sysctl) */
 #define SCTP_DEFAULT_MULTIPLE_ASCONFS	0
 
 /* default MOBILITY_BASE mode enable(1)/disable(0) value (sysctl) */
-#if defined (__APPLE__) && !defined(SCTP_APPLE_MOBILITY_BASE)
-#define SCTP_DEFAULT_MOBILITY_BASE      0
-#else
 #define SCTP_DEFAULT_MOBILITY_BASE	0
-#endif
 
 /* default MOBILITY_FASTHANDOFF mode enable(1)/disable(0) value (sysctl) */
-#if defined (__APPLE__) && !defined(SCTP_APPLE_MOBILITY_FASTHANDOFF)
 #define SCTP_DEFAULT_MOBILITY_FASTHANDOFF	0
-#else
-#define SCTP_DEFAULT_MOBILITY_FASTHANDOFF	0
-#endif
 
 /*
  * Theshold for rwnd updates, we have to read (sb_hiwat >>


More information about the svn-src-head mailing list