Update Korean IPv4/IPv6 ranges to latest data

This commit is contained in:
Kijin Sung 2016-07-03 23:44:07 +09:00
parent dd5c89b2f8
commit 038a158dc7
4 changed files with 1125 additions and 1015 deletions

View file

@ -5,7 +5,7 @@
*/
if (PHP_SAPI !== 'cli')
{
exit 1;
exit(1);
}
/**
@ -22,7 +22,7 @@ $content = file_get_contents($download_url, false, stream_context_create(array(
$content = gzdecode($content);
if (!$content)
{
exit 2;
exit(2);
}
/**

View file

@ -5,7 +5,7 @@
*/
if (PHP_SAPI !== 'cli')
{
exit 1;
exit (1);
}
/**
@ -21,7 +21,7 @@ $content = file_get_contents($download_url, false, stream_context_create(array(
)));
if (!$content)
{
exit 2;
exit (2);
}
/**