更新了分库分表配置

This commit is contained in:
2026-01-26 11:20:16 +08:00
parent 2d1eb76608
commit f093da11d4
10 changed files with 88 additions and 105 deletions

View File

@@ -9,13 +9,13 @@ function unet_is_valid_network_v4() {
function unet_is_valid_network_v4_allnet(){
if unet_is_valid_network_v4() then return true;
if is_self_net() then return true;
if dn42_is_self_net() then return true;
if is_self_net_inet4() then return true;
if is_self_net_dn42v4() then return true;
return false;
}
function unet_is_voalid_net_v6(){
if is_self_net_v6() then return true;
if dn42_is_self_net_v6() then return true;
if is_self_net_inet6() then return true;
if is_self_net_dn42v6() then return true;
return false;
}