v1.9.1beta14

~同步最新版本meta内核及singboxp内核
~延迟启动功能改回在afstart函数执行,以防止systemd启动超时
~透明代理规则增加过滤53端口机制,防止dns被tun或者tproxy劫持导致的一系列问题
~为singbox内核入站添加"domain_strategy":"prefer_ipv4"字段以适应geoip相关规则
~修复singbox内核fakeip列表中关于正则表达式匹配有误的bug
This commit is contained in:
juewuy
2024-08-17 19:08:41 +08:00
parent 7384f69856
commit b524c6e32a
2 changed files with 18 additions and 8 deletions

View File

@@ -75,7 +75,7 @@ ckstatus(){
PID=$(pidof CrashCore | awk '{print $NF}')
if [ -n "$PID" ];then
run="\033[32m正在运行$redir_mod\033[0m"
VmRSS=`cat /proc/$PID/status|grep -w VmRSS|awk 'unit="MB"{print $2/1000, unit}'`
VmRSS=`cat /proc/$PID/status|grep -w VmRSS|awk 'unit="MB" {printf "%.2f %s\n", $2/1000, unit}'`
#获取运行时长
touch ${TMPDIR}/crash_start_time #用于延迟启动的校验
start_time=$(cat ${TMPDIR}/crash_start_time)