mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-08 02:00:43 +08:00
13 lines
193 B
Go
Executable File
13 lines
193 B
Go
Executable File
// +build !linux,!darwin
|
|
|
|
package dialer
|
|
|
|
import (
|
|
"errors"
|
|
"syscall"
|
|
)
|
|
|
|
func bindToInterface(network, address string, c syscall.RawConn) error {
|
|
return errors.New("unsupported platform")
|
|
}
|