Prechádzať zdrojové kódy

fix default outbound handler

Darien Raymond 7 rokov pred
rodič
commit
9a46cf37fb
1 zmenil súbory, kde vykonal 8 pridanie a 0 odobranie
  1. 8 0
      app/proxyman/outbound/handler.go

+ 8 - 0
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
+}