summaryrefslogtreecommitdiffhomepage
path: root/wgengine/netstack/netstack_32bit.go
diff options
context:
space:
mode:
Diffstat (limited to 'wgengine/netstack/netstack_32bit.go')
-rw-r--r--wgengine/netstack/netstack_32bit.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/wgengine/netstack/netstack_32bit.go b/wgengine/netstack/netstack_32bit.go
index 22b34e51e..dfb433d3d 100644
--- a/wgengine/netstack/netstack_32bit.go
+++ b/wgengine/netstack/netstack_32bit.go
@@ -16,6 +16,6 @@ import (
"tailscale.com/wgengine/tstun"
)
-func Impl(logf logger.Logf, tundev *tstun.TUN, e wgengine.Engine, mc *magicsock.Conn) error {
- return errors.New("netstack is not supported on 32-bit platforms for now; see https://github.com/google/gvisor/issues/5241")
+func Create(logf logger.Logf, tundev *tstun.TUN, e wgengine.Engine, mc *magicsock.Conn) (wgengine.FakeImpl, error) {
+ return nil, errors.New("netstack is not supported on 32-bit platforms for now; see https://github.com/google/gvisor/issues/5241")
}