-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
58 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// +build !windows | ||
// +build linux | ||
|
||
package gost | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// +build !linux | ||
|
||
package gost | ||
|
||
import ( | ||
"errors" | ||
"net" | ||
|
||
"github.com/go-log/log" | ||
) | ||
|
||
type tcpRedirectHandler struct { | ||
options *HandlerOptions | ||
} | ||
|
||
// TCPRedirectHandler creates a server Handler for TCP redirect server. | ||
func TCPRedirectHandler(opts ...HandlerOption) Handler { | ||
h := &tcpRedirectHandler{ | ||
options: &HandlerOptions{ | ||
Chain: new(Chain), | ||
}, | ||
} | ||
for _, opt := range opts { | ||
opt(h.options) | ||
} | ||
return h | ||
} | ||
|
||
func (h *tcpRedirectHandler) Init(options ...HandlerOption) { | ||
log.Log("[red-tcp] TCP redirect is not available on the Windows platform") | ||
} | ||
|
||
func (h *tcpRedirectHandler) Handle(c net.Conn) { | ||
log.Log("[red-tcp] TCP redirect is not available on the Windows platform") | ||
c.Close() | ||
} | ||
|
||
type udpRedirectHandler struct { | ||
} | ||
|
||
// UDPRedirectHandler creates a server Handler for UDP transparent server. | ||
func UDPRedirectHandler(opts ...HandlerOption) Handler { | ||
return &udpRedirectHandler{} | ||
} | ||
|
||
func (h *udpRedirectHandler) Init(options ...HandlerOption) { | ||
} | ||
|
||
func (h *udpRedirectHandler) Handle(conn net.Conn) { | ||
log.Log("[red-udp] UDP redirect is not available on the Windows platform") | ||
conn.Close() | ||
} | ||
|
||
// UDPRedirectListener creates a Listener for UDP transparent proxy server. | ||
func UDPRedirectListener(addr string, cfg *UDPListenConfig) (Listener, error) { | ||
return nil, errors.New("UDP redirect is not available on the Windows platform") | ||
} |
This file was deleted.
Oops, something went wrong.