From: Alan T. DeKok Date: Mon, 12 Oct 2009 11:14:09 +0000 (+0200) Subject: Make client/port/key-balance more like fail-over X-Git-Tag: release_2_1_8~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c7e93afa4c2cd34d6494713f9a3d7ad3ce6818b5;p=thirdparty%2Ffreeradius-server.git Make client/port/key-balance more like fail-over Previously, they would default to load-balancing across all found servers. Now they don't. This makes keyed-balance proxying more robust with EAP --- diff --git a/src/main/realms.c b/src/main/realms.c index a0cb7963e64..925e23f98cd 100644 --- a/src/main/realms.c +++ b/src/main/realms.c @@ -1939,7 +1939,7 @@ home_server *home_server_ldb(const char *realmname, /* * We've found the first "live" one. Use that. */ - if (pool->type == HOME_POOL_FAIL_OVER) { + if (pool->type != HOME_POOL_LOAD_BALANCE) { found = home; break; }