dnscrypt-proxy/dnscrypt-proxy/setsockopts_others.go
2025-01-10 12:46:26 +01:00

15 lines
308 B
Go

//go:build !freebsd && !openbsd && !windows && !darwin && !linux
package main
import (
"net"
)
func (proxy *Proxy) udpListenerConfig() (*net.ListenConfig, error) {
return &net.ListenConfig{}, nil
}
func (proxy *Proxy) tcpListenerConfig() (*net.ListenConfig, error) {
return &net.ListenConfig{}, nil
}