diff options
author | Ghanan Gowripalan <ghanan@google.com> | 2019-12-05 10:40:18 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-12-05 10:41:45 -0800 |
commit | 10f7b109ab98c95783357b82e1934586f338c2b3 (patch) | |
tree | 84b1168d925e2169020c85e32e08a67fa58daf2d /pkg/tcpip/header/BUILD | |
parent | 05758f34b2f65b7e6b118d3719cb8ce37eb4bc79 (diff) |
Add a type to represent the NDP Recursive DNS Server option
This change adds a type to represent the NDP Recursive DNS Server option, as
defined by RFC 8106 section 5.1.
PiperOrigin-RevId: 284005493
Diffstat (limited to 'pkg/tcpip/header/BUILD')
-rw-r--r-- | pkg/tcpip/header/BUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pkg/tcpip/header/BUILD b/pkg/tcpip/header/BUILD index a3485b35c..8392cb9e5 100644 --- a/pkg/tcpip/header/BUILD +++ b/pkg/tcpip/header/BUILD @@ -55,5 +55,8 @@ go_test( "ndp_test.go", ], embed = [":header"], - deps = ["//pkg/tcpip"], + deps = [ + "//pkg/tcpip", + "@com_github_google_go-cmp//cmp:go_default_library", + ], ) |