mirror of
https://github.com/fosrl/newt.git
synced 2026-08-31 11:11:28 +02:00
17 lines
379 B
Go
17 lines
379 B
Go
//go:build !windows
|
|
|
|
package network
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
)
|
|
|
|
func configureWindows(interfaceName string, ip net.IP, ipNet *net.IPNet) error {
|
|
return fmt.Errorf("configureWindows called on non-Windows platform")
|
|
}
|
|
|
|
func removeWindowsAddress(interfaceName string, ip net.IP, ipNet *net.IPNet) error {
|
|
return fmt.Errorf("removeWindowsAddress called on non-Windows platform")
|
|
}
|