mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
16 lines
362 B
Go
16 lines
362 B
Go
//go:build !linux
|
|
|
|
package outbounds
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
)
|
|
|
|
func dialerBindToDevice(dialer *net.Dialer, deviceName string) error {
|
|
return errors.New("binding to device is not supported on this platform")
|
|
}
|
|
|
|
func udpConnBindToDevice(conn *net.UDPConn, deviceName string) error {
|
|
return errors.New("binding to device is not supported on this platform")
|
|
}
|