From c81a8f2b6d785e989eb091786dd473e383e2f00a Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Wed, 26 Jun 2019 12:09:30 +0200 Subject: attach: move cgo bits to a different file move the cgo bits to a separate file to allow building without cgo. Signed-off-by: Giuseppe Scrivano --- libpod/container_attach_linux.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'libpod/container_attach_linux.go') diff --git a/libpod/container_attach_linux.go b/libpod/container_attach_linux.go index f5aac5794..fc53268c3 100644 --- a/libpod/container_attach_linux.go +++ b/libpod/container_attach_linux.go @@ -19,10 +19,6 @@ import ( "k8s.io/client-go/tools/remotecommand" ) -//#include -// extern int unix_path_length(){struct sockaddr_un addr; return sizeof(addr.sun_path) - 1;} -import "C" - /* Sync with stdpipe_t in conmon.c */ const ( AttachPipeStdin = 1 @@ -80,7 +76,7 @@ func (c *Container) attachContainerSocket(resize <-chan remotecommand.TerminalSi socketPath := c.AttachSocketPath() - maxUnixLength := int(C.unix_path_length()) + maxUnixLength := unixPathLength() if maxUnixLength < len(socketPath) { socketPath = socketPath[0:maxUnixLength] } -- cgit v1.2.3-54-g00ecf