mirror of
https://github.com/cmz0228/hysteria-dev.git
synced 2025-06-14 08:19:53 +00:00
Fix stubs
This commit is contained in:
parent
3667778ca7
commit
03d530776c
@ -6,13 +6,15 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"github.com/tobyxdd/hysteria/pkg/acl"
|
"github.com/tobyxdd/hysteria/pkg/acl"
|
||||||
"github.com/tobyxdd/hysteria/pkg/core"
|
"github.com/tobyxdd/hysteria/pkg/core"
|
||||||
|
"github.com/tobyxdd/hysteria/pkg/transport"
|
||||||
"net"
|
"net"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type TCPTProxy struct{}
|
type TCPTProxy struct{}
|
||||||
|
|
||||||
func NewTCPTProxy(hyClient *core.Client, listen string, timeout time.Duration, aclEngine *acl.Engine,
|
func NewTCPTProxy(hyClient *core.Client, transport transport.Transport, listen string, timeout time.Duration,
|
||||||
|
aclEngine *acl.Engine,
|
||||||
connFunc func(addr, reqAddr net.Addr, action acl.Action, arg string),
|
connFunc func(addr, reqAddr net.Addr, action acl.Action, arg string),
|
||||||
errorFunc func(addr, reqAddr net.Addr, err error)) (*TCPTProxy, error) {
|
errorFunc func(addr, reqAddr net.Addr, err error)) (*TCPTProxy, error) {
|
||||||
return nil, errors.New("not supported on the current system")
|
return nil, errors.New("not supported on the current system")
|
||||||
|
@ -6,6 +6,7 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"github.com/tobyxdd/hysteria/pkg/acl"
|
"github.com/tobyxdd/hysteria/pkg/acl"
|
||||||
"github.com/tobyxdd/hysteria/pkg/core"
|
"github.com/tobyxdd/hysteria/pkg/core"
|
||||||
|
"github.com/tobyxdd/hysteria/pkg/transport"
|
||||||
"net"
|
"net"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
@ -14,7 +15,8 @@ var ErrTimeout = errors.New("inactivity timeout")
|
|||||||
|
|
||||||
type UDPTProxy struct{}
|
type UDPTProxy struct{}
|
||||||
|
|
||||||
func NewUDPTProxy(hyClient *core.Client, listen string, timeout time.Duration, aclEngine *acl.Engine,
|
func NewUDPTProxy(hyClient *core.Client, transport transport.Transport, listen string, timeout time.Duration,
|
||||||
|
aclEngine *acl.Engine,
|
||||||
connFunc func(addr net.Addr), errorFunc func(addr net.Addr, err error)) (*UDPTProxy, error) {
|
connFunc func(addr net.Addr), errorFunc func(addr net.Addr, err error)) (*UDPTProxy, error) {
|
||||||
return nil, errors.New("not supported on the current system")
|
return nil, errors.New("not supported on the current system")
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user