增加防探测功能,增加流量加密功能

This commit is contained in:
wenyifan
2022-09-09 15:29:41 +08:00
parent c2ab6cbe5f
commit a064f72104
12 changed files with 185 additions and 79 deletions

10
main.go
View File

@ -1,8 +1,14 @@
package main
import "shadowTLS/cmd"
import (
"math/rand"
"shadowTLS/cmd"
"time"
)
func init() {
rand.Seed(time.Now().UnixNano())
}
func main() {
cmd.Execute()
}