From 9a46cf37fb68dc8abb7c70700111cbe24228f85b Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Thu, 8 Feb 2018 15:45:50 +0100 Subject: [PATCH] fix default outbound handler --- app/proxyman/outbound/handler.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/proxyman/outbound/handler.go b/app/proxyman/outbound/handler.go index c792994e..9ef25c16 100644 --- a/app/proxyman/outbound/handler.go +++ b/app/proxyman/outbound/handler.go @@ -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 +}