interface: add stubs for wasm builds

This commit is contained in:
Patricio Whittingslow
2026-08-27 14:13:50 -03:00
committed by Ron Evans
parent 902c8d1203
commit e75c5f0526
3 changed files with 91 additions and 10 deletions
+27
View File
@@ -0,0 +1,27 @@
// TINYGO: The following is copied and modified from Go 1.26.2 official implementation.
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build js || wasip1
package net
// TINYGO: mirrors upstream net/interface_stub.go. These platforms have no
// interface table at all, so enumeration yields an empty list and no error,
// rather than failing. Callers that merely enumerate then see zero interfaces
// instead of a hard error; InterfaceByIndex/InterfaceByName still report
// errNoSuchInterface, since an empty table contains nothing.
func interfaceTable(ifindex int) ([]Interface, error) {
return nil, nil
}
func interfaceAddrTable(ifi *Interface) ([]Addr, error) {
return nil, nil
}
func interfaceMulticastAddrTable(ifi *Interface) ([]Addr, error) {
return nil, nil
}