summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpooka <pooka@NetBSD.org>2013-06-01 11:01:48 +0000
committerpooka <pooka@NetBSD.org>2013-06-01 11:01:48 +0000
commitb59ea2ed0ecd77f10534cac9c2900a4861c9fab0 (patch)
tree703f203dab0d1bd6fca0f611394fb1b4669cd093
parentd925df16dc7d6475d2c97c614343fd2f9921db1d (diff)
Give portalgo a compile-time override; for cases where the default default
doesn't make enough sense to even consider it (a lot of outgoing connections from rump kernels with local port 65535).
-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