diff options
author | Kevin Krakauer <krakauer@google.com> | 2021-02-11 15:59:20 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-02-11 16:01:43 -0800 |
commit | c39284f457383dabd52f468a10072ca6d2211cbb (patch) | |
tree | dc3cf96f9608670971e10e0985616b3d2583fd83 /pkg/tcpip/errors.go | |
parent | 2129dfff61526879ca6a681e7a498d1e0d9ace34 (diff) |
Let sentry understand tcpip.ErrMalformedHeader
Added a LINT IfChange/ThenChange check to catch this in the future.
PiperOrigin-RevId: 357077564
Diffstat (limited to 'pkg/tcpip/errors.go')
-rw-r--r-- | pkg/tcpip/errors.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/tcpip/errors.go b/pkg/tcpip/errors.go index af46da1d2..3b7cc52f3 100644 --- a/pkg/tcpip/errors.go +++ b/pkg/tcpip/errors.go @@ -32,6 +32,8 @@ type Error interface { fmt.Stringer } +// LINT.IfChange + // ErrAborted indicates the operation was aborted. // // +stateify savable @@ -536,3 +538,5 @@ func (*ErrWouldBlock) IgnoreStats() bool { return true } func (*ErrWouldBlock) String() string { return "operation would block" } + +// LINT.ThenChange(../syserr/netstack.go) |