1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
package(licenses = ["notice"]) # Apache 2.0
load("//tools/go_stateify:defs.bzl", "go_library", "go_test")
go_library(
name = "stack",
srcs = [
"linkaddrcache.go",
"nic.go",
"registration.go",
"route.go",
"stack.go",
"stack_global_state.go",
"transport_demuxer.go",
],
importpath = "gvisor.googlesource.com/gvisor/pkg/tcpip/stack",
visibility = [
"//visibility:public",
],
deps = [
"//pkg/ilist",
"//pkg/sleep",
"//pkg/tcpip",
"//pkg/tcpip/buffer",
"//pkg/tcpip/header",
"//pkg/tcpip/ports",
"//pkg/tcpip/seqnum",
"//pkg/waiter",
],
)
go_test(
name = "stack_x_test",
size = "small",
srcs = [
"stack_test.go",
"transport_test.go",
],
deps = [
":stack",
"//pkg/tcpip",
"//pkg/tcpip/buffer",
"//pkg/tcpip/header",
"//pkg/tcpip/link/channel",
"//pkg/waiter",
],
)
go_test(
name = "stack_test",
size = "small",
srcs = ["linkaddrcache_test.go"],
embed = [":stack"],
deps = [
"//pkg/sleep",
"//pkg/tcpip",
],
)
|