1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00

fix default outbound handler

This commit is contained in:
Darien Raymond 2018-02-08 15:45:50 +01:00
parent efcb567273
commit 9a46cf37fb
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -127,3 +127,11 @@ func (h *Handler) Dial(ctx context.Context, dest net.Destination) (internet.Conn
func (h *Handler) GetOutbound() proxy.Outbound {
return h.proxy
}
func (h *Handler) Start() error {
return nil
}
func (h *Handler) Close() error {
return nil
}