hysteria/pkg/tproxy/udp_stub.go
2022-11-16 22:57:35 -08:00

26 lines
525 B
Go

//go:build !linux
// +build !linux
package tproxy
import (
"errors"
"net"
"time"
"github.com/apernet/hysteria/pkg/core"
)
var ErrTimeout = errors.New("inactivity timeout")
type UDPTProxy struct{}
func NewUDPTProxy(hyClient *core.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")
}
func (r *UDPTProxy) ListenAndServe() error {
return nil
}