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
+12
View File
@@ -0,0 +1,12 @@
//go:build tinygo
package internal
import (
"errors"
"net"
)
func interfaceByName(name string) (*net.Interface, error) {
return nil, errors.New("net.InterfaceByName not implemented on TinyGo")
}