From 69af245aaf47e7dd00f55ab1e072de79ed31036d Mon Sep 17 00:00:00 2001 From: metowolf Date: Fri, 7 Feb 2025 20:58:55 +0800 Subject: [PATCH] Add common cloud service providers to ISP_MAP --- src/plugins/isp.js | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/plugins/isp.js b/src/plugins/isp.js index c9097cb4..c4b0f179 100644 --- a/src/plugins/isp.js +++ b/src/plugins/isp.js @@ -4,14 +4,15 @@ const ipdb_range = require('@ipdb/range') const ProgressBar = require('progress') const ISP_MAP = { - // 中国电信 - 'chinatelecom.com.cn': 'chinatelecom', - // 中国联通 - 'chinaunicom.com': 'chinaunicom', - // 中国移动 - 'chinamobile.com': 'chinamobile', - // 中国教育网 - 'cernet.edu.cn': 'cernet', + // 中国运营商 + 'chinatelecom.com.cn': 'chinatelecom', // 中国电信 + 'chinaunicom.com': 'chinaunicom', // 中国联通 + 'chinamobile.com': 'chinamobile', // 中国移动 + 'cernet.edu.cn': 'cernet', // 中国教育网 + // 常见云服务商 + 'aliyun.com': 'aliyun', + 'tencent.com': 'tencent', + 'cloudflare.com': 'cloudflare', } const plugin = (through2, file, cb) => {