aboutsummaryrefslogtreecommitdiff
path: root/dpi
diff options
context:
space:
mode:
authorcorvid <devnull@localhost>2014-10-22 01:29:46 +0000
committercorvid <devnull@localhost>2014-10-22 01:29:46 +0000
commitd417ed0233c7c152b4b884c40aba50e8daf15a17 (patch)
tree480efdd36152281ad32192fc2e99bee75cd9ff32 /dpi
parentf089e0d592b5514443ea743e9fb7fdd535aa1ff2 (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')
-rw-r--r--dpi/cookies.c7
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++) {