mirror of https://github.com/v2ray/v2ray-core
InboundHandlerMeta,OutboundHandlerMeta added KcpSupported bool to declare KCP support
parent
b17edf907e
commit
8666d122f0
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue