diff --git a/adapter/outbound/direct.go b/adapter/outbound/direct.go index d9793b3e..f7c88124 100644 --- a/adapter/outbound/direct.go +++ b/adapter/outbound/direct.go @@ -56,13 +56,3 @@ func NewCompatible() *Direct { }, } } - -func NewPass() *Direct { - return &Direct{ - Base: &Base{ - name: "PASS", - tp: C.Pass, - udp: true, - }, - } -} diff --git a/adapter/outbound/reject.go b/adapter/outbound/reject.go index f4752104..30ca75ee 100644 --- a/adapter/outbound/reject.go +++ b/adapter/outbound/reject.go @@ -34,6 +34,16 @@ func NewReject() *Reject { } } +func NewPass() *Reject { + return &Reject{ + Base: &Base{ + name: "PASS", + tp: C.Pass, + udp: true, + }, + } +} + type nopConn struct{} func (rw *nopConn) Read(b []byte) (int, error) {