blob: e8a52491889be6d77b805284374ee3cef55826fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package(licenses = ["notice"]) # Apache 2.0
load("//tools/go_stateify:defs.bzl", "go_library")
go_library(
name = "checker",
testonly = 1,
srcs = ["checker.go"],
importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/checker",
visibility = ["//visibility:public"],
deps = [
"//pkg/tcpip",
"//pkg/tcpip/header",
"//pkg/tcpip/seqnum",
],
)
|