summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/portalgo.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/sys/netinet/portalgo.c b/sys/netinet/portalgo.c
index b535c6ee024..ee44d024069 100644
--- a/sys/netinet/portalgo.c
+++ b/sys/netinet/portalgo.c
@@ -1,4 +1,4 @@
-/* $NetBSD: portalgo.c,v 1.4 2012/12/07 02:27:41 christos Exp $ */
+/* $NetBSD: portalgo.c,v 1.5 2013/06/01 11:01:48 pooka Exp $ */
/*
* Copyright 2011 Vlad Balan
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: portalgo.c,v 1.4 2012/12/07 02:27:41 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: portalgo.c,v 1.5 2013/06/01 11:01:48 pooka Exp $");
#include "opt_inet.h"
@@ -86,13 +86,20 @@ static bool portalgo_debug = true;
#define DPRINTF while (/*CONSTCOND*/0) printf
#endif
+#ifndef PORTALGO_INET4_DEFAULT
+#define PORTALGO_INET4_DEFAULT PORTALGO_BSD
+#endif
+#ifndef PORTALGO_INET6_DEFAULT
+#define PORTALGO_INET6_DEFAULT PORTALGO_BSD
+#endif
+
typedef __BITMAP_TYPE(, uint32_t, 0x10000) bitmap;
#ifdef INET
-static int inet4_portalgo = PORTALGO_BSD;
+static int inet4_portalgo = PORTALGO_INET4_DEFAULT;
static bitmap inet4_reserve;
#endif
#ifdef INET6
-static int inet6_portalgo = PORTALGO_BSD;
+static int inet6_portalgo = PORTALGO_INET6_DEFAULT;
static bitmap inet6_reserve;
#endif