mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-30 05:25:35 +00:00
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
|
||
|
}
|