mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-03 21:27:37 +03:00
15 lines
308 B
Go
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
|
|
}
|