Add naive inbound and test

This commit is contained in:
世界
2022-08-10 20:36:29 +08:00
parent ccdfab378a
commit b79b19c470
23 changed files with 709 additions and 87 deletions
+1
View File
@@ -13,6 +13,7 @@ const (
TypeShadowsocks = "shadowsocks"
TypeVMess = "vmess"
TypeTrojan = "trojan"
TypeNaive = "naive"
)
const (
+5
View File
@@ -0,0 +1,5 @@
//go:build with_quic
package constant
const QUIC_AVAILABLE = true
+5
View File
@@ -0,0 +1,5 @@
//go:build !with_quic
package constant
const QUIC_AVAILABLE = false