mirror of
https://github.com/safing/portmaster
synced 2025-09-01 10:09:11 +00:00
13 lines
229 B
Go
13 lines
229 B
Go
package netenv
|
|
|
|
import "net"
|
|
|
|
// Nameservers returns the currently active nameservers.
|
|
func Nameservers() []Nameserver {
|
|
return nil
|
|
}
|
|
|
|
// Gateways returns the currently active gateways.
|
|
func Gateways() []*net.IP {
|
|
return nil
|
|
}
|