dhcp subnet prefix fix

This commit is contained in:
soypat
2025-08-20 19:25:08 -03:00
parent 7470324b49
commit d254f3ae80
5 changed files with 39 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
//go:build !tinygo
package internal
import "net"
func interfaceByName(name string) (*net.Interface, error) {
return net.InterfaceByName(name)
}