refactor: re-org packages

This commit is contained in:
Toby 2022-11-24 00:22:44 -08:00
parent e338ed60cb
commit 3184c42956
70 changed files with 110 additions and 107 deletions

View file

@ -12,7 +12,7 @@ tasks:
sh: git rev-parse HEAD
BUILD_DATE:
sh: date "+%Y%m%d%H%M%S"
dir: ./cmd
dir: ./app/cmd/
cmds:
- |
GOOS={{.GOOS}} GOARCH={{.GOARCH}} GOARM={{.GOARM}} GOMIPS={{.GOMIPS}} \

View file

@ -6,11 +6,11 @@ import (
"net/http"
"time"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/core/cs"
"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
err := json5.Unmarshal(rawMsg, &pwds)
if err != nil {
@ -34,7 +34,7 @@ func PasswordAuthFunc(rawMsg json5.RawMessage) (core.ConnectFunc, error) {
}, nil
}
func ExternalAuthFunc(rawMsg json5.RawMessage) (core.ConnectFunc, error) {
func ExternalAuthFunc(rawMsg json5.RawMessage) (cs.ConnectFunc, error) {
var extConfig map[string]string
err := json5.Unmarshal(rawMsg, &extConfig)
if err != nil {

View file

@ -11,20 +11,21 @@ import (
"os"
"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/pkg/redirect"
"github.com/apernet/hysteria/core/pktconns"
"github.com/apernet/hysteria/core/pmtud"
"github.com/oschwald/geoip2-golang"
"github.com/yosuke-furukawa/json5/encoding/json5"
"github.com/apernet/hysteria/pkg/acl"
"github.com/apernet/hysteria/pkg/core"
hyHTTP "github.com/apernet/hysteria/pkg/http"
"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/apernet/hysteria/core/acl"
"github.com/apernet/hysteria/core/cs"
"github.com/apernet/hysteria/core/transport"
"github.com/lucas-clemente/quic-go"
"github.com/sirupsen/logrus"
)
@ -129,12 +130,12 @@ func client(config *clientConfig) {
}
}
// Client
var client *core.Client
var client *cs.Client
try := 0
up, down, _ := config.Speed()
for {
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) {
if config.QuitOnDisconnect {
logrus.WithFields(logrus.Fields{

View file

@ -9,11 +9,12 @@ import (
"strings"
"time"
"github.com/apernet/hysteria/app/tun"
"github.com/docker/go-units"
"gvisor.dev/gvisor/pkg/tcpip/transport/tcp"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/pkg/tun"
"github.com/apernet/hysteria/core/cs"
"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/>.
`
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
if timeout == 0 {
timeout = 300 * time.Second
@ -92,7 +93,7 @@ func startTUN(config *clientConfig, client *core.Client, errChan chan error) {
"src": defaultIPMasker.Mask(addr.String()),
"dst": defaultIPMasker.Mask(reqAddr),
}).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{
"src": defaultIPMasker.Mask(addr.String()),
"dst": defaultIPMasker.Mask(reqAddr),

View file

@ -4,7 +4,7 @@
package main
import (
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/core/cs"
"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.
`
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")
}

View file

@ -7,7 +7,7 @@ import (
"net/url"
"strings"
"github.com/apernet/hysteria/pkg/utils"
"github.com/apernet/hysteria/core/utils"
rdns "github.com/folbricht/routedns"
)

View file

@ -7,14 +7,15 @@ import (
"net/http"
"time"
"github.com/apernet/hysteria/pkg/pktconns"
"github.com/apernet/hysteria/app/auth"
"github.com/apernet/hysteria/cmd/auth"
"github.com/apernet/hysteria/pkg/acl"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/pkg/pmtud"
"github.com/apernet/hysteria/pkg/sockopt"
"github.com/apernet/hysteria/pkg/transport"
"github.com/apernet/hysteria/core/pktconns"
"github.com/apernet/hysteria/core/acl"
"github.com/apernet/hysteria/core/cs"
"github.com/apernet/hysteria/core/pmtud"
"github.com/apernet/hysteria/core/sockopt"
"github.com/apernet/hysteria/core/transport"
"github.com/lucas-clemente/quic-go"
"github.com/oschwald/geoip2-golang"
"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")
}
// Auth
var authFunc core.ConnectFunc
var authFunc cs.ConnectFunc
var err error
switch authMode := config.Auth.Mode; authMode {
case "", "none":
@ -221,7 +222,7 @@ func server(config *serverConfig) {
}
// Server
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,
connectFunc, disconnectFunc, tcpRequestFunc, tcpErrorFunc, udpRequestFunc, udpErrorFunc, promReg)
if err != nil {

View file

@ -7,17 +7,17 @@ import (
"net/http"
"time"
"github.com/apernet/hysteria/pkg/transport"
"github.com/apernet/hysteria/pkg/utils"
"github.com/apernet/hysteria/core/transport"
"github.com/apernet/hysteria/core/utils"
"github.com/elazarl/goproxy/ext/auth"
"github.com/apernet/hysteria/pkg/acl"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/core/acl"
"github.com/apernet/hysteria/core/cs"
"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,
basicAuthFunc func(user, password string) bool,
newDialFunc func(reqAddr string, action acl.Action, arg string),

View file

@ -7,12 +7,12 @@ import (
"syscall"
"time"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/pkg/utils"
"github.com/apernet/hysteria/core/cs"
"github.com/apernet/hysteria/core/utils"
)
type TCPRedirect struct {
HyClient *core.Client
HyClient *cs.Client
ListenAddr *net.TCPAddr
Timeout time.Duration
@ -20,7 +20,7 @@ type TCPRedirect struct {
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),
errorFunc func(addr, reqAddr net.Addr, err error),
) (*TCPRedirect, error) {

View file

@ -8,12 +8,12 @@ import (
"net"
"time"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/core/cs"
)
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),
errorFunc func(addr, reqAddr net.Addr, err error),
) (*TCPRedirect, error) {

View file

@ -4,12 +4,12 @@ import (
"net"
"time"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/pkg/utils"
"github.com/apernet/hysteria/core/cs"
"github.com/apernet/hysteria/core/utils"
)
type TCPRelay struct {
HyClient *core.Client
HyClient *cs.Client
ListenAddr *net.TCPAddr
Remote string
Timeout time.Duration
@ -18,7 +18,7 @@ type TCPRelay struct {
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),
) (*TCPRelay, error) {
tAddr, err := net.ResolveTCPAddr("tcp", listen)

View file

@ -7,7 +7,7 @@ import (
"sync/atomic"
"time"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/core/cs"
)
const udpBufferSize = 4096
@ -15,7 +15,7 @@ const udpBufferSize = 4096
var ErrTimeout = errors.New("inactivity timeout")
type UDPRelay struct {
HyClient *core.Client
HyClient *cs.Client
ListenAddr *net.UDPAddr
Remote string
Timeout time.Duration
@ -24,7 +24,7 @@ type UDPRelay struct {
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),
) (*UDPRelay, error) {
uAddr, err := net.ResolveUDPAddr("udp", listen)
@ -46,7 +46,7 @@ func NewUDPRelay(hyClient *core.Client, listen, remote string, timeout time.Dura
}
type connEntry struct {
HyConn core.HyUDPConn
HyConn cs.HyUDPConn
Deadline atomic.Value
}

View file

@ -6,10 +6,10 @@ import (
"fmt"
"strconv"
"github.com/apernet/hysteria/pkg/acl"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/pkg/transport"
"github.com/apernet/hysteria/pkg/utils"
"github.com/apernet/hysteria/core/acl"
"github.com/apernet/hysteria/core/cs"
"github.com/apernet/hysteria/core/transport"
"github.com/apernet/hysteria/core/utils"
)
import (
@ -27,7 +27,7 @@ var (
)
type Server struct {
HyClient *core.Client
HyClient *cs.Client
Transport *transport.ClientTransport
AuthFunc func(username, password string) bool
Method byte
@ -44,7 +44,7 @@ type Server struct {
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,
aclEngine *acl.Engine, disableUDP bool,
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
}
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
buf := make([]byte, udpBufferSize)
// Local to remote

View file

@ -5,12 +5,12 @@ import (
"time"
"github.com/LiamHaworth/go-tproxy"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/pkg/utils"
"github.com/apernet/hysteria/core/cs"
"github.com/apernet/hysteria/core/utils"
)
type TCPTProxy struct {
HyClient *core.Client
HyClient *cs.Client
ListenAddr *net.TCPAddr
Timeout time.Duration
@ -18,7 +18,7 @@ type TCPTProxy struct {
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),
errorFunc func(addr, reqAddr net.Addr, err error),
) (*TCPTProxy, error) {

View file

@ -8,12 +8,12 @@ import (
"net"
"time"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/core/cs"
)
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),
errorFunc func(addr, reqAddr net.Addr, err error),
) (*TCPTProxy, error) {

View file

@ -5,13 +5,13 @@ import (
"time"
"github.com/LiamHaworth/go-tproxy"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/core/cs"
)
const udpBufferSize = 4096
type UDPTProxy struct {
HyClient *core.Client
HyClient *cs.Client
ListenAddr *net.UDPAddr
Timeout time.Duration
@ -19,7 +19,7 @@ type UDPTProxy struct {
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),
errorFunc func(addr, reqAddr net.Addr, err error),
) (*UDPTProxy, error) {

View file

@ -8,14 +8,14 @@ import (
"net"
"time"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/core/cs"
)
var ErrTimeout = errors.New("inactivity timeout")
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),
) (*UDPTProxy, error) {
return nil, errors.New("not supported on the current system")

View file

@ -14,7 +14,7 @@ import (
"github.com/xjasonlyu/tun2socks/v2/core/option"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/core/cs"
"github.com/sirupsen/logrus"
t2score "github.com/xjasonlyu/tun2socks/v2/core"
"github.com/xjasonlyu/tun2socks/v2/core/adapter"
@ -27,7 +27,7 @@ import (
var _ adapter.TransportHandler = (*Server)(nil)
type Server struct {
HyClient *core.Client
HyClient *cs.Client
Timeout time.Duration
DeviceInfo DeviceInfo
@ -66,7 +66,7 @@ func (d *DeviceInfo) Open() (dev device.Device, err error) {
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,
) (*Server, error) {
if mtu == 0 {
@ -87,7 +87,7 @@ func NewServerWithTunFd(hyClient *core.Client, timeout time.Duration, tunFd int,
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,
) (*Server, error) {
if mtu == 0 {

View file

@ -6,7 +6,7 @@ package tun
import (
"net"
"github.com/apernet/hysteria/pkg/utils"
"github.com/apernet/hysteria/core/utils"
"github.com/xjasonlyu/tun2socks/v2/core/adapter"
)

View file

@ -9,7 +9,7 @@ import (
"strconv"
"time"
"github.com/apernet/hysteria/pkg/core"
"github.com/apernet/hysteria/core/cs"
"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)
}
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)
// local => remote
go func() {

View file

@ -59,7 +59,7 @@ foreach ($platform in $platforms) {
if ($env:GOOS -eq "windows") {
$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) {
Write-Host "Error: failed to build $env:GOOS/$env:GOARCH" -ForegroundColor Red
exit 1

View file

@ -52,7 +52,7 @@ for platform in "${platforms[@]}"; do
if [ $GOOS = "windows" ]; then
output="$output.exe"
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
echo "Error: failed to build $GOOS/$GOARCH"
exit 1

View file

@ -8,7 +8,7 @@ import (
lru "github.com/hashicorp/golang-lru/v2"
"github.com/apernet/hysteria/pkg/utils"
"github.com/apernet/hysteria/core/utils"
"github.com/oschwald/geoip2-golang"
)

View file

@ -1,4 +1,4 @@
package core
package cs
import (
"bytes"
@ -12,12 +12,12 @@ import (
"sync"
"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/pkg/utils"
"github.com/apernet/hysteria/core/pmtud"
"github.com/apernet/hysteria/core/utils"
"github.com/lucas-clemente/quic-go"
"github.com/lunixbochs/struc"
)

View file

@ -1,4 +1,4 @@
package core
package cs
func fragUDPMessage(m udpMessage, maxSize int) []udpMessage {
if m.Size() <= maxSize {

View file

@ -1,4 +1,4 @@
package core
package cs
import (
"reflect"

View file

@ -1,4 +1,4 @@
package core
package cs
import (
"time"

View file

@ -1,4 +1,4 @@
package core
package cs
import (
"context"
@ -7,11 +7,11 @@ import (
"fmt"
"net"
"github.com/apernet/hysteria/pkg/congestion"
"github.com/apernet/hysteria/core/congestion"
"github.com/apernet/hysteria/pkg/acl"
"github.com/apernet/hysteria/pkg/pmtud"
"github.com/apernet/hysteria/pkg/transport"
"github.com/apernet/hysteria/core/acl"
"github.com/apernet/hysteria/core/pmtud"
"github.com/apernet/hysteria/core/transport"
"github.com/lucas-clemente/quic-go"
"github.com/lunixbochs/struc"
"github.com/prometheus/client_golang/prometheus"

View file

@ -1,4 +1,4 @@
package core
package cs
import (
"bytes"
@ -9,9 +9,9 @@ import (
"strconv"
"sync"
"github.com/apernet/hysteria/pkg/acl"
"github.com/apernet/hysteria/pkg/transport"
"github.com/apernet/hysteria/pkg/utils"
"github.com/apernet/hysteria/core/acl"
"github.com/apernet/hysteria/core/transport"
"github.com/apernet/hysteria/core/utils"
"github.com/lucas-clemente/quic-go"
"github.com/lunixbochs/struc"
"github.com/prometheus/client_golang/prometheus"

View file

@ -1,4 +1,4 @@
package core
package cs
import (
"context"

View file

@ -6,7 +6,7 @@ import (
"syscall"
"time"
"github.com/apernet/hysteria/pkg/pktconns/obfs"
"github.com/apernet/hysteria/core/pktconns/obfs"
)
const udpBufferSize = 4096

View file

@ -5,10 +5,10 @@ import (
"strings"
"time"
"github.com/apernet/hysteria/pkg/pktconns/faketcp"
"github.com/apernet/hysteria/pkg/pktconns/obfs"
"github.com/apernet/hysteria/pkg/pktconns/udp"
"github.com/apernet/hysteria/pkg/pktconns/wechat"
"github.com/apernet/hysteria/core/pktconns/faketcp"
"github.com/apernet/hysteria/core/pktconns/obfs"
"github.com/apernet/hysteria/core/pktconns/udp"
"github.com/apernet/hysteria/core/pktconns/wechat"
)
type (

View file

@ -10,7 +10,7 @@ import (
"syscall"
"time"
"github.com/apernet/hysteria/pkg/pktconns/obfs"
"github.com/apernet/hysteria/core/pktconns/obfs"
)
const (

View file

@ -7,7 +7,7 @@ import (
"syscall"
"time"
"github.com/apernet/hysteria/pkg/pktconns/obfs"
"github.com/apernet/hysteria/core/pktconns/obfs"
)
const udpBufferSize = 4096

View file

@ -9,7 +9,7 @@ import (
"syscall"
"time"
"github.com/apernet/hysteria/pkg/pktconns/obfs"
"github.com/apernet/hysteria/core/pktconns/obfs"
)
const udpBufferSize = 4096

View file

@ -5,8 +5,8 @@ import (
"strconv"
"time"
"github.com/apernet/hysteria/pkg/sockopt"
"github.com/apernet/hysteria/pkg/utils"
"github.com/apernet/hysteria/core/sockopt"
"github.com/apernet/hysteria/core/utils"
)
type ServerTransport struct {