diff options
author | corvid <devnull@localhost> | 2014-10-22 01:29:46 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2014-10-22 01:29:46 +0000 |
commit | 6339752fb3fa2790c293bce40282bcf21cdf1918 (patch) | |
tree | d13eab9825224ec98659f9461be37166eb71a12b /dpi/cookies.c | |
parent | d6cf4437d0acac5831bb7e391569794c2dfa0151 (diff) |
trim the publicsuffix TLDs yet again
in January 2010, there were 42 entries. Now there are 22, and nearly all of
them are rather...marginal.
Diffstat (limited to 'dpi/cookies.c')
-rw-r--r-- | dpi/cookies.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/dpi/cookies.c b/dpi/cookies.c index 6c5e958e..b858bd53 100644 --- a/dpi/cookies.c +++ b/dpi/cookies.c @@ -1042,14 +1042,13 @@ static uint_t Cookies_internal_dots_required(const char *host) if (tld_len > 0) { /* These TLDs were chosen by examining the current publicsuffix list - * in February 2014 and picking out those where it was simplest for + * in October 2014 and picking out those where it was simplest for * them to describe the situation by beginning with a "*.[tld]" rule * or every rule was "[something].[tld]". */ - const char *const tlds[] = {"bd","bn","ck","cy","er","et","fj","fk", + const char *const tlds[] = {"bd","bn","ck","cy","er","fj","fk", "gu","il","jm","ke","kh","kw","mm","mz", - "ni","np","nz","pg","tr","uk","ye","za", - "zm","zw"}; + "ni","np","pg","ye","za","zm","zw"}; uint_t i, tld_num = sizeof(tlds) / sizeof(tlds[0]); for (i = 0; i < tld_num; i++) { |