mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-10-31 09:59:14 +00:00 
			
		
		
		
	Generated largely from the specified config; small parts taken from `docker image inspect`, such as the command line. Renamed some of the yaml keys to match the OCI spec rather than Docker Compose as we decided they are more readable, no more underscores. Add some extra functionality - tmpfs specification - fully general mount specification - no new privileges can be specified now For nostalgic reasons, using engine-api to talk to the docker cli as we only need an old API version, and it is nice and easy to vendor... Signed-off-by: Justin Cormack <justin.cormack@docker.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			605 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			605 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Package sockets provides helper functions to create and configure Unix or TCP sockets.
 | |
| package sockets
 | |
| 
 | |
| import (
 | |
| 	"crypto/tls"
 | |
| 	"net"
 | |
| )
 | |
| 
 | |
| // NewTCPSocket creates a TCP socket listener with the specified address and
 | |
| // the specified tls configuration. If TLSConfig is set, will encapsulate the
 | |
| // TCP listener inside a TLS one.
 | |
| func NewTCPSocket(addr string, tlsConfig *tls.Config) (net.Listener, error) {
 | |
| 	l, err := net.Listen("tcp", addr)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if tlsConfig != nil {
 | |
| 		tlsConfig.NextProtos = []string{"http/1.1"}
 | |
| 		l = tls.NewListener(l, tlsConfig)
 | |
| 	}
 | |
| 	return l, nil
 | |
| }
 |