mirror of https://github.com/ginuerzh/gost
2 changed files with 19 additions and 0 deletions
@ -0,0 +1,17 @@ |
|||
// +build windows
|
|||
|
|||
package gost |
|||
|
|||
import ( |
|||
"errors" |
|||
) |
|||
|
|||
type RedsocksTCPServer struct{} |
|||
|
|||
func NewRedsocksTCPServer(base *ProxyServer) *RedsocksTCPServer { |
|||
return &RedsocksTCPServer{} |
|||
} |
|||
|
|||
func (s *RedsocksTCPServer) ListenAndServe() error { |
|||
return errors.New("Not supported") |
|||
} |
|||
Loading…
Reference in new issue