summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/stack/registration.go
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-07-23 13:25:33 -0700
committergVisor bot <gvisor-bot@google.com>2020-07-23 13:25:33 -0700
commitfc26b3764ecfe4f5a5eb7826a9fb46626738b391 (patch)
treec43fdaefe2c8f14d39da88cb4b4dc39b0b90c5f6 /pkg/tcpip/stack/registration.go
parent20b556e625354dd8330e30e4075ad06eedc6a2ce (diff)
parentfb8be7e6273f5a646cdf48e38743a2507a4bf64f (diff)
Merge pull request #3207 from kevinGC:icmp-connect
PiperOrigin-RevId: 322853192
Diffstat (limited to 'pkg/tcpip/stack/registration.go')
-rw-r--r--pkg/tcpip/stack/registration.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkg/tcpip/stack/registration.go b/pkg/tcpip/stack/registration.go
index cd4b7a449..9e1b2d25f 100644
--- a/pkg/tcpip/stack/registration.go
+++ b/pkg/tcpip/stack/registration.go
@@ -52,8 +52,11 @@ type TransportEndpointID struct {
type ControlType int
// The following are the allowed values for ControlType values.
+// TODO(http://gvisor.dev/issue/3210): Support time exceeded messages.
const (
- ControlPacketTooBig ControlType = iota
+ ControlNetworkUnreachable ControlType = iota
+ ControlNoRoute
+ ControlPacketTooBig
ControlPortUnreachable
ControlUnknown
)