diff options
author | Ghanan Gowripalan <ghanan@google.com> | 2019-10-25 16:05:31 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-10-25 16:06:55 -0700 |
commit | 5a421058a07477e23f6ca23bb510894419224080 (patch) | |
tree | 2a195e7993861f27d0b65ea7fc2bacbdac338fa7 /pkg/tcpip/checker/BUILD | |
parent | 8f029b3f823342e43d23e2a238bc599596bdca24 (diff) |
Validate the checksum for incoming ICMPv6 packets
This change validates the ICMPv6 checksum field before further processing an
ICMPv6 packet.
Tests: Unittests to make sure that only ICMPv6 packets with a valid checksum
are accepted/processed. Existing tests using checker.ICMPv6 now also check the
ICMPv6 checksum field.
PiperOrigin-RevId: 276779148
Diffstat (limited to 'pkg/tcpip/checker/BUILD')
-rw-r--r-- | pkg/tcpip/checker/BUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/tcpip/checker/BUILD b/pkg/tcpip/checker/BUILD index 4cecfb989..b6fa6fc37 100644 --- a/pkg/tcpip/checker/BUILD +++ b/pkg/tcpip/checker/BUILD @@ -10,6 +10,7 @@ go_library( visibility = ["//visibility:public"], deps = [ "//pkg/tcpip", + "//pkg/tcpip/buffer", "//pkg/tcpip/header", "//pkg/tcpip/seqnum", ], |