From b59ea2ed0ecd77f10534cac9c2900a4861c9fab0 Mon Sep 17 00:00:00 2001 From: pooka Date: Sat, 1 Jun 2013 11:01:48 +0000 Subject: 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). --- sys/netinet/portalgo.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'sys') 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 -__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 -- cgit hor'>author
AgeCommit message (Expand)Author
2007-06-21Remove gdb 5.3 as nothing uses it now.skrll
2003-08-11Import gdb-5.3christos