1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-21 09:36:34 -05:00

InboundHandlerMeta,OutboundHandlerMeta added KcpSupported bool to declare KCP support

This commit is contained in:
Shelikhoo 2016-06-11 17:20:48 +08:00
parent b17edf907e
commit 8666d122f0
No known key found for this signature in database
GPG Key ID: 7791BDB0709ABD21

View File

@ -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.