diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-09-27 02:27:53 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-09-27 02:27:53 +0000 |
commit | 9177d7067f52b594767f6bf9e1b041ecd7c0d37e (patch) | |
tree | 957a0f8a7dc101e75a81cd3d825f63431c8a0545 /pkg/tcpip/tcpip.go | |
parent | 204ecb2a5c047371257eafcbeff7400cd22a4bc3 (diff) | |
parent | a376a0baf362506549fcc58861465fa89ed33f7f (diff) |
Merge release-20200921.0-52-ga376a0baf (automated)
Diffstat (limited to 'pkg/tcpip/tcpip.go')
-rw-r--r-- | pkg/tcpip/tcpip.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/pkg/tcpip/tcpip.go b/pkg/tcpip/tcpip.go index fa73cfa47..464608dee 100644 --- a/pkg/tcpip/tcpip.go +++ b/pkg/tcpip/tcpip.go @@ -1987,14 +1987,3 @@ func DeleteDanglingEndpoint(e Endpoint) { // AsyncLoading is the global barrier for asynchronous endpoint loading // activities. var AsyncLoading sync.WaitGroup - -// ICMPReason is a marker interface for network protocol agnostic ICMP errors. -type ICMPReason interface { - isICMP() -} - -// ICMPReasonPortUnreachable is an error where the transport protocol has no -// listener and no alternative means to inform the sender. -type ICMPReasonPortUnreachable struct{} - -func (*ICMPReasonPortUnreachable) isICMP() {} |