소스 검색

fix default outbound handler

Darien Raymond 7 년 전
부모
커밋
9a46cf37fb
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  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
+}