System: winXP sp3, running as service
Despite [wild-hosts] section intro states, that #only upto 125 wild hosts can be specified. i found out, that in fact only 30 entries will be used.
To be correct, exactly 32 Entries are read from the conf-file :-( Very bad for "powerful" Ad-Blocking.
Found the reason:
File dualserverd.h (V6.95RC):
#define MAX_WILD_HOSTS 32
File dualserverd.cpp (V6.95RC):
if (f = openSection("WILD_HOSTS", 1)) { int i = 0;
while (readSection(raw, f)) { if (i < MAX_WILD_HOSTS) {
Kind regards.
To be correct, exactly 32 Entries are read from the conf-file :-(
Very bad for "powerful" Ad-Blocking.
Found the reason:
File dualserverd.h (V6.95RC):
#define MAX_WILD_HOSTS 32
File dualserverd.cpp (V6.95RC):
if (f = openSection("WILD_HOSTS", 1))
{
int i = 0;
while (readSection(raw, f))
{
if (i < MAX_WILD_HOSTS)
{
Kind regards.