#ifndef the definitions of IPSTATE_MAX and IPSTATE_SIZE
authorkjell <kjell@openbsd.org>
Thu, 13 Apr 2000 17:13:42 +0000 (17:13 +0000)
committerkjell <kjell@openbsd.org>
Thu, 13 Apr 2000 17:13:42 +0000 (17:13 +0000)
This allows the redefinition of these constants in mk.conf,
for example. mep@netset.net

sys/netinet/ip_state.h

index 5cc276d..5174f85 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ip_state.h,v 1.13 2000/03/13 23:40:18 kjell Exp $     */
+/*     $OpenBSD: ip_state.h,v 1.14 2000/04/13 17:13:42 kjell Exp $     */
 
 /*
  * Copyright (C) 1995-1998 by Darren Reed.
 #ifndef        __IP_STATE_H__
 #define        __IP_STATE_H__
 
-#define        IPSTATE_SIZE    257
-#define        IPSTATE_MAX     2048    /* Maximum number of states held */
+#ifndef        IPSTATE_SIZE
+# define       IPSTATE_SIZE    257
+#endif
+
+#ifndef                IPSTATE_MAX
+# define       IPSTATE_MAX     2048    /* Maximum number of states held */
+#endif
 
 #define        PAIRS(s1,d1,s2,d2)      ((((s1) == (s2)) && ((d1) == (d2))) ||\
                                 (((s1) == (d2)) && ((d1) == (s2))))