From 55b70552c16232c19f31f1cf9413b8aebd525cda Mon Sep 17 00:00:00 2001 From: Ayush Ranjan Date: Mon, 8 Nov 2021 09:41:41 -0800 Subject: Replace references of ConnectableEndpoint with BoundEndpoint. PiperOrigin-RevId: 408366542 --- pkg/sentry/socket/unix/transport/connectioned.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkg/sentry/socket/unix') diff --git a/pkg/sentry/socket/unix/transport/connectioned.go b/pkg/sentry/socket/unix/transport/connectioned.go index 46fbaac1b..690d4de24 100644 --- a/pkg/sentry/socket/unix/transport/connectioned.go +++ b/pkg/sentry/socket/unix/transport/connectioned.go @@ -44,7 +44,7 @@ type ConnectingEndpoint interface { // Type returns the socket type, typically either SockStream or // SockSeqpacket. The connection attempt must be aborted if this - // value doesn't match the ConnectableEndpoint's type. + // value doesn't match the BoundEndpoint's type. Type() linux.SockType // GetLocalAddress returns the bound path. @@ -69,7 +69,7 @@ type ConnectingEndpoint interface { } // connectionedEndpoint is a Unix-domain connected or connectable endpoint and implements -// ConnectingEndpoint, ConnectableEndpoint and tcpip.Endpoint. +// ConnectingEndpoint, BoundEndpoint and tcpip.Endpoint. // // connectionedEndpoints must be in connected state in order to transfer data. // -- cgit v1.2.3