mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 13:07:39 +03:00
refactor: re-org packages
This commit is contained in:
parent
e338ed60cb
commit
3184c42956
70 changed files with 110 additions and 107 deletions
|
@ -12,7 +12,7 @@ tasks:
|
||||||
sh: git rev-parse HEAD
|
sh: git rev-parse HEAD
|
||||||
BUILD_DATE:
|
BUILD_DATE:
|
||||||
sh: date "+%Y%m%d%H%M%S"
|
sh: date "+%Y%m%d%H%M%S"
|
||||||
dir: ./cmd
|
dir: ./app/cmd/
|
||||||
cmds:
|
cmds:
|
||||||
- |
|
- |
|
||||||
GOOS={{.GOOS}} GOARCH={{.GOARCH}} GOARM={{.GOARM}} GOMIPS={{.GOMIPS}} \
|
GOOS={{.GOOS}} GOARCH={{.GOARCH}} GOARM={{.GOARM}} GOMIPS={{.GOMIPS}} \
|
||||||
|
|
|
@ -6,11 +6,11 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
"github.com/yosuke-furukawa/json5/encoding/json5"
|
"github.com/yosuke-furukawa/json5/encoding/json5"
|
||||||
)
|
)
|
||||||
|
|
||||||
func PasswordAuthFunc(rawMsg json5.RawMessage) (core.ConnectFunc, error) {
|
func PasswordAuthFunc(rawMsg json5.RawMessage) (cs.ConnectFunc, error) {
|
||||||
var pwds []string
|
var pwds []string
|
||||||
err := json5.Unmarshal(rawMsg, &pwds)
|
err := json5.Unmarshal(rawMsg, &pwds)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -34,7 +34,7 @@ func PasswordAuthFunc(rawMsg json5.RawMessage) (core.ConnectFunc, error) {
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func ExternalAuthFunc(rawMsg json5.RawMessage) (core.ConnectFunc, error) {
|
func ExternalAuthFunc(rawMsg json5.RawMessage) (cs.ConnectFunc, error) {
|
||||||
var extConfig map[string]string
|
var extConfig map[string]string
|
||||||
err := json5.Unmarshal(rawMsg, &extConfig)
|
err := json5.Unmarshal(rawMsg, &extConfig)
|
||||||
if err != nil {
|
if err != nil {
|
|
@ -11,20 +11,21 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/pktconns"
|
hyHTTP "github.com/apernet/hysteria/app/http"
|
||||||
|
"github.com/apernet/hysteria/app/redirect"
|
||||||
|
"github.com/apernet/hysteria/app/relay"
|
||||||
|
"github.com/apernet/hysteria/app/socks5"
|
||||||
|
"github.com/apernet/hysteria/app/tproxy"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/pmtud"
|
"github.com/apernet/hysteria/core/pktconns"
|
||||||
"github.com/apernet/hysteria/pkg/redirect"
|
|
||||||
|
"github.com/apernet/hysteria/core/pmtud"
|
||||||
"github.com/oschwald/geoip2-golang"
|
"github.com/oschwald/geoip2-golang"
|
||||||
"github.com/yosuke-furukawa/json5/encoding/json5"
|
"github.com/yosuke-furukawa/json5/encoding/json5"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/acl"
|
"github.com/apernet/hysteria/core/acl"
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
hyHTTP "github.com/apernet/hysteria/pkg/http"
|
"github.com/apernet/hysteria/core/transport"
|
||||||
"github.com/apernet/hysteria/pkg/relay"
|
|
||||||
"github.com/apernet/hysteria/pkg/socks5"
|
|
||||||
"github.com/apernet/hysteria/pkg/tproxy"
|
|
||||||
"github.com/apernet/hysteria/pkg/transport"
|
|
||||||
"github.com/lucas-clemente/quic-go"
|
"github.com/lucas-clemente/quic-go"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
@ -129,12 +130,12 @@ func client(config *clientConfig) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Client
|
// Client
|
||||||
var client *core.Client
|
var client *cs.Client
|
||||||
try := 0
|
try := 0
|
||||||
up, down, _ := config.Speed()
|
up, down, _ := config.Speed()
|
||||||
for {
|
for {
|
||||||
try += 1
|
try += 1
|
||||||
c, err := core.NewClient(config.Server, auth, tlsConfig, quicConfig, pktConnFunc, up, down, config.FastOpen,
|
c, err := cs.NewClient(config.Server, auth, tlsConfig, quicConfig, pktConnFunc, up, down, config.FastOpen,
|
||||||
func(err error) {
|
func(err error) {
|
||||||
if config.QuitOnDisconnect {
|
if config.QuitOnDisconnect {
|
||||||
logrus.WithFields(logrus.Fields{
|
logrus.WithFields(logrus.Fields{
|
|
@ -9,11 +9,12 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/apernet/hysteria/app/tun"
|
||||||
|
|
||||||
"github.com/docker/go-units"
|
"github.com/docker/go-units"
|
||||||
"gvisor.dev/gvisor/pkg/tcpip/transport/tcp"
|
"gvisor.dev/gvisor/pkg/tcpip/transport/tcp"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
"github.com/apernet/hysteria/pkg/tun"
|
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -34,7 +35,7 @@ You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
`
|
`
|
||||||
|
|
||||||
func startTUN(config *clientConfig, client *core.Client, errChan chan error) {
|
func startTUN(config *clientConfig, client *cs.Client, errChan chan error) {
|
||||||
timeout := time.Duration(config.TUN.Timeout) * time.Second
|
timeout := time.Duration(config.TUN.Timeout) * time.Second
|
||||||
if timeout == 0 {
|
if timeout == 0 {
|
||||||
timeout = 300 * time.Second
|
timeout = 300 * time.Second
|
||||||
|
@ -92,7 +93,7 @@ func startTUN(config *clientConfig, client *core.Client, errChan chan error) {
|
||||||
"src": defaultIPMasker.Mask(addr.String()),
|
"src": defaultIPMasker.Mask(addr.String()),
|
||||||
"dst": defaultIPMasker.Mask(reqAddr),
|
"dst": defaultIPMasker.Mask(reqAddr),
|
||||||
}).Debugf("TUN %s EOF", strings.ToUpper(addr.Network()))
|
}).Debugf("TUN %s EOF", strings.ToUpper(addr.Network()))
|
||||||
} else if err == core.ErrClosed && strings.HasPrefix(addr.Network(), "udp") {
|
} else if err == cs.ErrClosed && strings.HasPrefix(addr.Network(), "udp") {
|
||||||
logrus.WithFields(logrus.Fields{
|
logrus.WithFields(logrus.Fields{
|
||||||
"src": defaultIPMasker.Mask(addr.String()),
|
"src": defaultIPMasker.Mask(addr.String()),
|
||||||
"dst": defaultIPMasker.Mask(reqAddr),
|
"dst": defaultIPMasker.Mask(reqAddr),
|
|
@ -4,7 +4,7 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -31,6 +31,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
`
|
`
|
||||||
|
|
||||||
func startTUN(config *clientConfig, client *core.Client, errChan chan error) {
|
func startTUN(config *clientConfig, client *cs.Client, errChan chan error) {
|
||||||
logrus.Fatalln("TUN mode is only available in GPL builds. Please rebuild hysteria with -tags gpl")
|
logrus.Fatalln("TUN mode is only available in GPL builds. Please rebuild hysteria with -tags gpl")
|
||||||
}
|
}
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"net/url"
|
"net/url"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/utils"
|
"github.com/apernet/hysteria/core/utils"
|
||||||
rdns "github.com/folbricht/routedns"
|
rdns "github.com/folbricht/routedns"
|
||||||
)
|
)
|
||||||
|
|
|
@ -7,14 +7,15 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/pktconns"
|
"github.com/apernet/hysteria/app/auth"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/cmd/auth"
|
"github.com/apernet/hysteria/core/pktconns"
|
||||||
"github.com/apernet/hysteria/pkg/acl"
|
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/acl"
|
||||||
"github.com/apernet/hysteria/pkg/pmtud"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
"github.com/apernet/hysteria/pkg/sockopt"
|
"github.com/apernet/hysteria/core/pmtud"
|
||||||
"github.com/apernet/hysteria/pkg/transport"
|
"github.com/apernet/hysteria/core/sockopt"
|
||||||
|
"github.com/apernet/hysteria/core/transport"
|
||||||
"github.com/lucas-clemente/quic-go"
|
"github.com/lucas-clemente/quic-go"
|
||||||
"github.com/oschwald/geoip2-golang"
|
"github.com/oschwald/geoip2-golang"
|
||||||
"github.com/prometheus/client_golang/prometheus"
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
|
@ -90,7 +91,7 @@ func server(config *serverConfig) {
|
||||||
logrus.Info("Path MTU Discovery is not yet supported on this platform")
|
logrus.Info("Path MTU Discovery is not yet supported on this platform")
|
||||||
}
|
}
|
||||||
// Auth
|
// Auth
|
||||||
var authFunc core.ConnectFunc
|
var authFunc cs.ConnectFunc
|
||||||
var err error
|
var err error
|
||||||
switch authMode := config.Auth.Mode; authMode {
|
switch authMode := config.Auth.Mode; authMode {
|
||||||
case "", "none":
|
case "", "none":
|
||||||
|
@ -221,7 +222,7 @@ func server(config *serverConfig) {
|
||||||
}
|
}
|
||||||
// Server
|
// Server
|
||||||
up, down, _ := config.Speed()
|
up, down, _ := config.Speed()
|
||||||
server, err := core.NewServer(tlsConfig, quicConfig, pktConn,
|
server, err := cs.NewServer(tlsConfig, quicConfig, pktConn,
|
||||||
transport.DefaultServerTransport, up, down, config.DisableUDP, aclEngine,
|
transport.DefaultServerTransport, up, down, config.DisableUDP, aclEngine,
|
||||||
connectFunc, disconnectFunc, tcpRequestFunc, tcpErrorFunc, udpRequestFunc, udpErrorFunc, promReg)
|
connectFunc, disconnectFunc, tcpRequestFunc, tcpErrorFunc, udpRequestFunc, udpErrorFunc, promReg)
|
||||||
if err != nil {
|
if err != nil {
|
|
@ -7,17 +7,17 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/transport"
|
"github.com/apernet/hysteria/core/transport"
|
||||||
"github.com/apernet/hysteria/pkg/utils"
|
"github.com/apernet/hysteria/core/utils"
|
||||||
|
|
||||||
"github.com/elazarl/goproxy/ext/auth"
|
"github.com/elazarl/goproxy/ext/auth"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/acl"
|
"github.com/apernet/hysteria/core/acl"
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
"github.com/elazarl/goproxy"
|
"github.com/elazarl/goproxy"
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewProxyHTTPServer(hyClient *core.Client, transport *transport.ClientTransport, idleTimeout time.Duration,
|
func NewProxyHTTPServer(hyClient *cs.Client, transport *transport.ClientTransport, idleTimeout time.Duration,
|
||||||
aclEngine *acl.Engine,
|
aclEngine *acl.Engine,
|
||||||
basicAuthFunc func(user, password string) bool,
|
basicAuthFunc func(user, password string) bool,
|
||||||
newDialFunc func(reqAddr string, action acl.Action, arg string),
|
newDialFunc func(reqAddr string, action acl.Action, arg string),
|
|
@ -7,12 +7,12 @@ import (
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
"github.com/apernet/hysteria/pkg/utils"
|
"github.com/apernet/hysteria/core/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type TCPRedirect struct {
|
type TCPRedirect struct {
|
||||||
HyClient *core.Client
|
HyClient *cs.Client
|
||||||
ListenAddr *net.TCPAddr
|
ListenAddr *net.TCPAddr
|
||||||
Timeout time.Duration
|
Timeout time.Duration
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ type TCPRedirect struct {
|
||||||
ErrorFunc func(addr, reqAddr net.Addr, err error)
|
ErrorFunc func(addr, reqAddr net.Addr, err error)
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewTCPRedirect(hyClient *core.Client, listen string, timeout time.Duration,
|
func NewTCPRedirect(hyClient *cs.Client, listen string, timeout time.Duration,
|
||||||
connFunc func(addr, reqAddr net.Addr),
|
connFunc func(addr, reqAddr net.Addr),
|
||||||
errorFunc func(addr, reqAddr net.Addr, err error),
|
errorFunc func(addr, reqAddr net.Addr, err error),
|
||||||
) (*TCPRedirect, error) {
|
) (*TCPRedirect, error) {
|
|
@ -8,12 +8,12 @@ import (
|
||||||
"net"
|
"net"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
)
|
)
|
||||||
|
|
||||||
type TCPRedirect struct{}
|
type TCPRedirect struct{}
|
||||||
|
|
||||||
func NewTCPRedirect(hyClient *core.Client, listen string, timeout time.Duration,
|
func NewTCPRedirect(hyClient *cs.Client, listen string, timeout time.Duration,
|
||||||
connFunc func(addr, reqAddr net.Addr),
|
connFunc func(addr, reqAddr net.Addr),
|
||||||
errorFunc func(addr, reqAddr net.Addr, err error),
|
errorFunc func(addr, reqAddr net.Addr, err error),
|
||||||
) (*TCPRedirect, error) {
|
) (*TCPRedirect, error) {
|
|
@ -4,12 +4,12 @@ import (
|
||||||
"net"
|
"net"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
"github.com/apernet/hysteria/pkg/utils"
|
"github.com/apernet/hysteria/core/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type TCPRelay struct {
|
type TCPRelay struct {
|
||||||
HyClient *core.Client
|
HyClient *cs.Client
|
||||||
ListenAddr *net.TCPAddr
|
ListenAddr *net.TCPAddr
|
||||||
Remote string
|
Remote string
|
||||||
Timeout time.Duration
|
Timeout time.Duration
|
||||||
|
@ -18,7 +18,7 @@ type TCPRelay struct {
|
||||||
ErrorFunc func(addr net.Addr, err error)
|
ErrorFunc func(addr net.Addr, err error)
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewTCPRelay(hyClient *core.Client, listen, remote string, timeout time.Duration,
|
func NewTCPRelay(hyClient *cs.Client, listen, remote string, timeout time.Duration,
|
||||||
connFunc func(addr net.Addr), errorFunc func(addr net.Addr, err error),
|
connFunc func(addr net.Addr), errorFunc func(addr net.Addr, err error),
|
||||||
) (*TCPRelay, error) {
|
) (*TCPRelay, error) {
|
||||||
tAddr, err := net.ResolveTCPAddr("tcp", listen)
|
tAddr, err := net.ResolveTCPAddr("tcp", listen)
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
)
|
)
|
||||||
|
|
||||||
const udpBufferSize = 4096
|
const udpBufferSize = 4096
|
||||||
|
@ -15,7 +15,7 @@ const udpBufferSize = 4096
|
||||||
var ErrTimeout = errors.New("inactivity timeout")
|
var ErrTimeout = errors.New("inactivity timeout")
|
||||||
|
|
||||||
type UDPRelay struct {
|
type UDPRelay struct {
|
||||||
HyClient *core.Client
|
HyClient *cs.Client
|
||||||
ListenAddr *net.UDPAddr
|
ListenAddr *net.UDPAddr
|
||||||
Remote string
|
Remote string
|
||||||
Timeout time.Duration
|
Timeout time.Duration
|
||||||
|
@ -24,7 +24,7 @@ type UDPRelay struct {
|
||||||
ErrorFunc func(addr net.Addr, err error)
|
ErrorFunc func(addr net.Addr, err error)
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewUDPRelay(hyClient *core.Client, listen, remote string, timeout time.Duration,
|
func NewUDPRelay(hyClient *cs.Client, listen, remote string, timeout time.Duration,
|
||||||
connFunc func(addr net.Addr), errorFunc func(addr net.Addr, err error),
|
connFunc func(addr net.Addr), errorFunc func(addr net.Addr, err error),
|
||||||
) (*UDPRelay, error) {
|
) (*UDPRelay, error) {
|
||||||
uAddr, err := net.ResolveUDPAddr("udp", listen)
|
uAddr, err := net.ResolveUDPAddr("udp", listen)
|
||||||
|
@ -46,7 +46,7 @@ func NewUDPRelay(hyClient *core.Client, listen, remote string, timeout time.Dura
|
||||||
}
|
}
|
||||||
|
|
||||||
type connEntry struct {
|
type connEntry struct {
|
||||||
HyConn core.HyUDPConn
|
HyConn cs.HyUDPConn
|
||||||
Deadline atomic.Value
|
Deadline atomic.Value
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,10 +6,10 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/acl"
|
"github.com/apernet/hysteria/core/acl"
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
"github.com/apernet/hysteria/pkg/transport"
|
"github.com/apernet/hysteria/core/transport"
|
||||||
"github.com/apernet/hysteria/pkg/utils"
|
"github.com/apernet/hysteria/core/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -27,7 +27,7 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
type Server struct {
|
type Server struct {
|
||||||
HyClient *core.Client
|
HyClient *cs.Client
|
||||||
Transport *transport.ClientTransport
|
Transport *transport.ClientTransport
|
||||||
AuthFunc func(username, password string) bool
|
AuthFunc func(username, password string) bool
|
||||||
Method byte
|
Method byte
|
||||||
|
@ -44,7 +44,7 @@ type Server struct {
|
||||||
tcpListener *net.TCPListener
|
tcpListener *net.TCPListener
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewServer(hyClient *core.Client, transport *transport.ClientTransport, addr string,
|
func NewServer(hyClient *cs.Client, transport *transport.ClientTransport, addr string,
|
||||||
authFunc func(username, password string) bool, tcpTimeout time.Duration,
|
authFunc func(username, password string) bool, tcpTimeout time.Duration,
|
||||||
aclEngine *acl.Engine, disableUDP bool,
|
aclEngine *acl.Engine, disableUDP bool,
|
||||||
tcpReqFunc func(addr net.Addr, reqAddr string, action acl.Action, arg string),
|
tcpReqFunc func(addr net.Addr, reqAddr string, action acl.Action, arg string),
|
||||||
|
@ -320,7 +320,7 @@ func (s *Server) handleUDP(c *net.TCPConn, r *socks5.Request) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) udpServer(clientConn *net.UDPConn, localRelayConn *net.UDPConn, hyUDP core.HyUDPConn) {
|
func (s *Server) udpServer(clientConn *net.UDPConn, localRelayConn *net.UDPConn, hyUDP cs.HyUDPConn) {
|
||||||
var clientAddr *net.UDPAddr
|
var clientAddr *net.UDPAddr
|
||||||
buf := make([]byte, udpBufferSize)
|
buf := make([]byte, udpBufferSize)
|
||||||
// Local to remote
|
// Local to remote
|
|
@ -5,12 +5,12 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/LiamHaworth/go-tproxy"
|
"github.com/LiamHaworth/go-tproxy"
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
"github.com/apernet/hysteria/pkg/utils"
|
"github.com/apernet/hysteria/core/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type TCPTProxy struct {
|
type TCPTProxy struct {
|
||||||
HyClient *core.Client
|
HyClient *cs.Client
|
||||||
ListenAddr *net.TCPAddr
|
ListenAddr *net.TCPAddr
|
||||||
Timeout time.Duration
|
Timeout time.Duration
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ type TCPTProxy struct {
|
||||||
ErrorFunc func(addr, reqAddr net.Addr, err error)
|
ErrorFunc func(addr, reqAddr net.Addr, err error)
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewTCPTProxy(hyClient *core.Client, listen string, timeout time.Duration,
|
func NewTCPTProxy(hyClient *cs.Client, listen string, timeout time.Duration,
|
||||||
connFunc func(addr, reqAddr net.Addr),
|
connFunc func(addr, reqAddr net.Addr),
|
||||||
errorFunc func(addr, reqAddr net.Addr, err error),
|
errorFunc func(addr, reqAddr net.Addr, err error),
|
||||||
) (*TCPTProxy, error) {
|
) (*TCPTProxy, error) {
|
|
@ -8,12 +8,12 @@ import (
|
||||||
"net"
|
"net"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
)
|
)
|
||||||
|
|
||||||
type TCPTProxy struct{}
|
type TCPTProxy struct{}
|
||||||
|
|
||||||
func NewTCPTProxy(hyClient *core.Client, listen string, timeout time.Duration,
|
func NewTCPTProxy(hyClient *cs.Client, listen string, timeout time.Duration,
|
||||||
connFunc func(addr, reqAddr net.Addr),
|
connFunc func(addr, reqAddr net.Addr),
|
||||||
errorFunc func(addr, reqAddr net.Addr, err error),
|
errorFunc func(addr, reqAddr net.Addr, err error),
|
||||||
) (*TCPTProxy, error) {
|
) (*TCPTProxy, error) {
|
|
@ -5,13 +5,13 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/LiamHaworth/go-tproxy"
|
"github.com/LiamHaworth/go-tproxy"
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
)
|
)
|
||||||
|
|
||||||
const udpBufferSize = 4096
|
const udpBufferSize = 4096
|
||||||
|
|
||||||
type UDPTProxy struct {
|
type UDPTProxy struct {
|
||||||
HyClient *core.Client
|
HyClient *cs.Client
|
||||||
ListenAddr *net.UDPAddr
|
ListenAddr *net.UDPAddr
|
||||||
Timeout time.Duration
|
Timeout time.Duration
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ type UDPTProxy struct {
|
||||||
ErrorFunc func(addr, reqAddr net.Addr, err error)
|
ErrorFunc func(addr, reqAddr net.Addr, err error)
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewUDPTProxy(hyClient *core.Client, listen string, timeout time.Duration,
|
func NewUDPTProxy(hyClient *cs.Client, listen string, timeout time.Duration,
|
||||||
connFunc func(addr, reqAddr net.Addr),
|
connFunc func(addr, reqAddr net.Addr),
|
||||||
errorFunc func(addr, reqAddr net.Addr, err error),
|
errorFunc func(addr, reqAddr net.Addr, err error),
|
||||||
) (*UDPTProxy, error) {
|
) (*UDPTProxy, error) {
|
|
@ -8,14 +8,14 @@ import (
|
||||||
"net"
|
"net"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
)
|
)
|
||||||
|
|
||||||
var ErrTimeout = errors.New("inactivity timeout")
|
var ErrTimeout = errors.New("inactivity timeout")
|
||||||
|
|
||||||
type UDPTProxy struct{}
|
type UDPTProxy struct{}
|
||||||
|
|
||||||
func NewUDPTProxy(hyClient *core.Client, listen string, timeout time.Duration,
|
func NewUDPTProxy(hyClient *cs.Client, listen string, timeout time.Duration,
|
||||||
connFunc func(addr, reqAddr net.Addr), errorFunc func(addr, reqAddr net.Addr, err error),
|
connFunc func(addr, reqAddr net.Addr), errorFunc func(addr, reqAddr net.Addr, err error),
|
||||||
) (*UDPTProxy, error) {
|
) (*UDPTProxy, error) {
|
||||||
return nil, errors.New("not supported on the current system")
|
return nil, errors.New("not supported on the current system")
|
|
@ -14,7 +14,7 @@ import (
|
||||||
|
|
||||||
"github.com/xjasonlyu/tun2socks/v2/core/option"
|
"github.com/xjasonlyu/tun2socks/v2/core/option"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
t2score "github.com/xjasonlyu/tun2socks/v2/core"
|
t2score "github.com/xjasonlyu/tun2socks/v2/core"
|
||||||
"github.com/xjasonlyu/tun2socks/v2/core/adapter"
|
"github.com/xjasonlyu/tun2socks/v2/core/adapter"
|
||||||
|
@ -27,7 +27,7 @@ import (
|
||||||
var _ adapter.TransportHandler = (*Server)(nil)
|
var _ adapter.TransportHandler = (*Server)(nil)
|
||||||
|
|
||||||
type Server struct {
|
type Server struct {
|
||||||
HyClient *core.Client
|
HyClient *cs.Client
|
||||||
Timeout time.Duration
|
Timeout time.Duration
|
||||||
DeviceInfo DeviceInfo
|
DeviceInfo DeviceInfo
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ func (d *DeviceInfo) Open() (dev device.Device, err error) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewServerWithTunFd(hyClient *core.Client, timeout time.Duration, tunFd int, mtu uint32,
|
func NewServerWithTunFd(hyClient *cs.Client, timeout time.Duration, tunFd int, mtu uint32,
|
||||||
tcpSendBufferSize, tcpReceiveBufferSize int, tcpModerateReceiveBuffer bool,
|
tcpSendBufferSize, tcpReceiveBufferSize int, tcpModerateReceiveBuffer bool,
|
||||||
) (*Server, error) {
|
) (*Server, error) {
|
||||||
if mtu == 0 {
|
if mtu == 0 {
|
||||||
|
@ -87,7 +87,7 @@ func NewServerWithTunFd(hyClient *core.Client, timeout time.Duration, tunFd int,
|
||||||
return s, nil
|
return s, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewServer(hyClient *core.Client, timeout time.Duration, name string, mtu uint32,
|
func NewServer(hyClient *cs.Client, timeout time.Duration, name string, mtu uint32,
|
||||||
tcpSendBufferSize, tcpReceiveBufferSize int, tcpModerateReceiveBuffer bool,
|
tcpSendBufferSize, tcpReceiveBufferSize int, tcpModerateReceiveBuffer bool,
|
||||||
) (*Server, error) {
|
) (*Server, error) {
|
||||||
if mtu == 0 {
|
if mtu == 0 {
|
|
@ -6,7 +6,7 @@ package tun
|
||||||
import (
|
import (
|
||||||
"net"
|
"net"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/utils"
|
"github.com/apernet/hysteria/core/utils"
|
||||||
"github.com/xjasonlyu/tun2socks/v2/core/adapter"
|
"github.com/xjasonlyu/tun2socks/v2/core/adapter"
|
||||||
)
|
)
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/core"
|
"github.com/apernet/hysteria/core/cs"
|
||||||
"github.com/xjasonlyu/tun2socks/v2/core/adapter"
|
"github.com/xjasonlyu/tun2socks/v2/core/adapter"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ func (s *Server) handleUDPConn(conn adapter.UDPConn) {
|
||||||
err = s.relayUDP(conn, rc, &remoteAddr, s.Timeout)
|
err = s.relayUDP(conn, rc, &remoteAddr, s.Timeout)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) relayUDP(lc adapter.UDPConn, rc core.HyUDPConn, to *net.UDPAddr, timeout time.Duration) (err error) {
|
func (s *Server) relayUDP(lc adapter.UDPConn, rc cs.HyUDPConn, to *net.UDPAddr, timeout time.Duration) (err error) {
|
||||||
errChan := make(chan error, 2)
|
errChan := make(chan error, 2)
|
||||||
// local => remote
|
// local => remote
|
||||||
go func() {
|
go func() {
|
|
@ -59,7 +59,7 @@ foreach ($platform in $platforms) {
|
||||||
if ($env:GOOS -eq "windows") {
|
if ($env:GOOS -eq "windows") {
|
||||||
$output = "$output.exe"
|
$output = "$output.exe"
|
||||||
}
|
}
|
||||||
go build -o $output -tags=gpl -ldflags $ldflags -trimpath ./cmd/
|
go build -o $output -tags=gpl -ldflags $ldflags -trimpath ./app/cmd/
|
||||||
if ($LastExitCode -ne 0) {
|
if ($LastExitCode -ne 0) {
|
||||||
Write-Host "Error: failed to build $env:GOOS/$env:GOARCH" -ForegroundColor Red
|
Write-Host "Error: failed to build $env:GOOS/$env:GOARCH" -ForegroundColor Red
|
||||||
exit 1
|
exit 1
|
||||||
|
|
2
build.sh
2
build.sh
|
@ -52,7 +52,7 @@ for platform in "${platforms[@]}"; do
|
||||||
if [ $GOOS = "windows" ]; then
|
if [ $GOOS = "windows" ]; then
|
||||||
output="$output.exe"
|
output="$output.exe"
|
||||||
fi
|
fi
|
||||||
env GOOS=$GOOS GOARCH=$GOARCH CGO_ENABLED=0 go build -o $output -tags=gpl -ldflags "$ldflags" -trimpath ./cmd/
|
env GOOS=$GOOS GOARCH=$GOARCH CGO_ENABLED=0 go build -o $output -tags=gpl -ldflags "$ldflags" -trimpath ./app/cmd/
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
echo "Error: failed to build $GOOS/$GOARCH"
|
echo "Error: failed to build $GOOS/$GOARCH"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
|
@ -8,7 +8,7 @@ import (
|
||||||
|
|
||||||
lru "github.com/hashicorp/golang-lru/v2"
|
lru "github.com/hashicorp/golang-lru/v2"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/utils"
|
"github.com/apernet/hysteria/core/utils"
|
||||||
"github.com/oschwald/geoip2-golang"
|
"github.com/oschwald/geoip2-golang"
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package core
|
package cs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
@ -12,12 +12,12 @@ import (
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/pktconns"
|
"github.com/apernet/hysteria/core/pktconns"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/congestion"
|
"github.com/apernet/hysteria/core/congestion"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/pmtud"
|
"github.com/apernet/hysteria/core/pmtud"
|
||||||
"github.com/apernet/hysteria/pkg/utils"
|
"github.com/apernet/hysteria/core/utils"
|
||||||
"github.com/lucas-clemente/quic-go"
|
"github.com/lucas-clemente/quic-go"
|
||||||
"github.com/lunixbochs/struc"
|
"github.com/lunixbochs/struc"
|
||||||
)
|
)
|
|
@ -1,4 +1,4 @@
|
||||||
package core
|
package cs
|
||||||
|
|
||||||
func fragUDPMessage(m udpMessage, maxSize int) []udpMessage {
|
func fragUDPMessage(m udpMessage, maxSize int) []udpMessage {
|
||||||
if m.Size() <= maxSize {
|
if m.Size() <= maxSize {
|
|
@ -1,4 +1,4 @@
|
||||||
package core
|
package cs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"reflect"
|
"reflect"
|
|
@ -1,4 +1,4 @@
|
||||||
package core
|
package cs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
|
@ -1,4 +1,4 @@
|
||||||
package core
|
package cs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
@ -7,11 +7,11 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"net"
|
"net"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/congestion"
|
"github.com/apernet/hysteria/core/congestion"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/acl"
|
"github.com/apernet/hysteria/core/acl"
|
||||||
"github.com/apernet/hysteria/pkg/pmtud"
|
"github.com/apernet/hysteria/core/pmtud"
|
||||||
"github.com/apernet/hysteria/pkg/transport"
|
"github.com/apernet/hysteria/core/transport"
|
||||||
"github.com/lucas-clemente/quic-go"
|
"github.com/lucas-clemente/quic-go"
|
||||||
"github.com/lunixbochs/struc"
|
"github.com/lunixbochs/struc"
|
||||||
"github.com/prometheus/client_golang/prometheus"
|
"github.com/prometheus/client_golang/prometheus"
|
|
@ -1,4 +1,4 @@
|
||||||
package core
|
package cs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
@ -9,9 +9,9 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/acl"
|
"github.com/apernet/hysteria/core/acl"
|
||||||
"github.com/apernet/hysteria/pkg/transport"
|
"github.com/apernet/hysteria/core/transport"
|
||||||
"github.com/apernet/hysteria/pkg/utils"
|
"github.com/apernet/hysteria/core/utils"
|
||||||
"github.com/lucas-clemente/quic-go"
|
"github.com/lucas-clemente/quic-go"
|
||||||
"github.com/lunixbochs/struc"
|
"github.com/lunixbochs/struc"
|
||||||
"github.com/prometheus/client_golang/prometheus"
|
"github.com/prometheus/client_golang/prometheus"
|
|
@ -1,4 +1,4 @@
|
||||||
package core
|
package cs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/pktconns/obfs"
|
"github.com/apernet/hysteria/core/pktconns/obfs"
|
||||||
)
|
)
|
||||||
|
|
||||||
const udpBufferSize = 4096
|
const udpBufferSize = 4096
|
|
@ -5,10 +5,10 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/pktconns/faketcp"
|
"github.com/apernet/hysteria/core/pktconns/faketcp"
|
||||||
"github.com/apernet/hysteria/pkg/pktconns/obfs"
|
"github.com/apernet/hysteria/core/pktconns/obfs"
|
||||||
"github.com/apernet/hysteria/pkg/pktconns/udp"
|
"github.com/apernet/hysteria/core/pktconns/udp"
|
||||||
"github.com/apernet/hysteria/pkg/pktconns/wechat"
|
"github.com/apernet/hysteria/core/pktconns/wechat"
|
||||||
)
|
)
|
||||||
|
|
||||||
type (
|
type (
|
|
@ -10,7 +10,7 @@ import (
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/pktconns/obfs"
|
"github.com/apernet/hysteria/core/pktconns/obfs"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
|
@ -7,7 +7,7 @@ import (
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/pktconns/obfs"
|
"github.com/apernet/hysteria/core/pktconns/obfs"
|
||||||
)
|
)
|
||||||
|
|
||||||
const udpBufferSize = 4096
|
const udpBufferSize = 4096
|
|
@ -9,7 +9,7 @@ import (
|
||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/pktconns/obfs"
|
"github.com/apernet/hysteria/core/pktconns/obfs"
|
||||||
)
|
)
|
||||||
|
|
||||||
const udpBufferSize = 4096
|
const udpBufferSize = 4096
|
|
@ -5,8 +5,8 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/pkg/sockopt"
|
"github.com/apernet/hysteria/core/sockopt"
|
||||||
"github.com/apernet/hysteria/pkg/utils"
|
"github.com/apernet/hysteria/core/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ServerTransport struct {
|
type ServerTransport struct {
|
Loading…
Add table
Add a link
Reference in a new issue