浏览代码

InboundHandlerMeta,OutboundHandlerMeta added KcpSupported bool to declare KCP support

Shelikhoo 9 年之前
父节点
当前提交
8666d122f0
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      proxy/proxy.go

+ 4 - 0
proxy/proxy.go

@@ -18,11 +18,15 @@ type InboundHandlerMeta struct {
 	Tag     string
 	Address v2net.Address
 	Port    v2net.Port
+	//Whether this proxy support KCP connections
+	KcpSupported bool
 }
 
 type OutboundHandlerMeta struct {
 	Tag     string
 	Address v2net.Address
+	//Whether this proxy support KCP connections
+	KcpSupported bool
 }
 
 // An InboundHandler handles inbound network connections to V2Ray.