Initial commit (code only without large binaries)

This commit is contained in:
robin
2026-02-15 18:58:44 +08:00
commit 35df75498f
9442 changed files with 1495866 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# 网络地址定义
## 定义
~~~json
{
"protocol": "协议",
"host": "主机地址,通常为空",
"portRange": "端口或者端口范围"
}
~~~
## 示例
对于 `http://example.com`
~~~json
{
"protocol": "http",
"host": "example.com",
"portRange": "80"
}
~~~
对于 `https://example.com`
~~~json
{
"protocol": "https",
"host": "example.com",
"portRange": "443"
}
~~~