mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
26 lines
522 B
Go
26 lines
522 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package tproxy
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
"time"
|
|
|
|
"github.com/apernet/hysteria/core/cs"
|
|
)
|
|
|
|
var ErrTimeout = errors.New("inactivity timeout")
|
|
|
|
type UDPTProxy struct{}
|
|
|
|
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")
|
|
}
|
|
|
|
func (r *UDPTProxy) ListenAndServe() error {
|
|
return nil
|
|
}
|