mirror of
https://github.com/moby/moby.git
synced 2026-08-02 22:26:52 +00:00
We don't want to maintain backward compatibility for this package, so better make it an internal. Signed-off-by: Albin Kerouanton <albinker@gmail.com>
12 lines
203 B
Go
12 lines
203 B
Go
//go:build !linux
|
|
|
|
package netnsutils
|
|
|
|
import (
|
|
"syscall"
|
|
"testing"
|
|
)
|
|
|
|
// AssertSocketSameNetNS is a no-op on platforms other than Linux.
|
|
func AssertSocketSameNetNS(t testing.TB, conn syscall.Conn) {}
|