mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-27 12:05:40 +00:00
25f0a3fc8f
Updates tailscale/corp#22125 Signed-off-by: Jordan Whited <jordan@tailscale.com>
17 lines
328 B
Go
17 lines
328 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
//go:build !ios
|
|
|
|
package netstack
|
|
|
|
import (
|
|
nsgro "gvisor.dev/gvisor/pkg/tcpip/stack/gro"
|
|
)
|
|
|
|
// gro wraps a gVisor GRO implementation. It exists solely to prevent iOS from
|
|
// importing said package (see _ios.go).
|
|
type gro struct {
|
|
nsgro.GRO
|
|
}
|