forked from toolshed/abra
		
	
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Package sockets provides helper functions to create and configure Unix or TCP sockets.
 | |
| package sockets
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"errors"
 | |
| 	"fmt"
 | |
| 	"net"
 | |
| 	"net/http"
 | |
| 	"syscall"
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	defaultTimeout        = 10 * time.Second
 | |
| 	maxUnixSocketPathSize = len(syscall.RawSockaddrUnix{}.Path)
 | |
| )
 | |
| 
 | |
| // ErrProtocolNotAvailable is returned when a given transport protocol is not provided by the operating system.
 | |
| var ErrProtocolNotAvailable = errors.New("protocol not available")
 | |
| 
 | |
| // ConfigureTransport configures the specified [http.Transport] according to the specified proto
 | |
| // and addr.
 | |
| //
 | |
| // If the proto is unix (using a unix socket to communicate) or npipe the compression is disabled.
 | |
| // For other protos, compression is enabled. If you want to manually enable/disable compression,
 | |
| // make sure you do it _after_ any subsequent calls to ConfigureTransport is made against the same
 | |
| // [http.Transport].
 | |
| func ConfigureTransport(tr *http.Transport, proto, addr string) error {
 | |
| 	switch proto {
 | |
| 	case "unix":
 | |
| 		return configureUnixTransport(tr, proto, addr)
 | |
| 	case "npipe":
 | |
| 		return configureNpipeTransport(tr, proto, addr)
 | |
| 	default:
 | |
| 		tr.Proxy = http.ProxyFromEnvironment
 | |
| 		tr.DisableCompression = false
 | |
| 		tr.DialContext = (&net.Dialer{
 | |
| 			Timeout: defaultTimeout,
 | |
| 		}).DialContext
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| // DialPipe connects to a Windows named pipe. It is not supported on
 | |
| // non-Windows platforms.
 | |
| //
 | |
| // Deprecated: use [github.com/Microsoft/go-winio.DialPipe] or [github.com/Microsoft/go-winio.DialPipeContext].
 | |
| func DialPipe(addr string, timeout time.Duration) (net.Conn, error) {
 | |
| 	return dialPipe(addr, timeout)
 | |
| }
 | |
| 
 | |
| func configureUnixTransport(tr *http.Transport, proto, addr string) error {
 | |
| 	if len(addr) > maxUnixSocketPathSize {
 | |
| 		return fmt.Errorf("unix socket path %q is too long", addr)
 | |
| 	}
 | |
| 	// No need for compression in local communications.
 | |
| 	tr.DisableCompression = true
 | |
| 	dialer := &net.Dialer{
 | |
| 		Timeout: defaultTimeout,
 | |
| 	}
 | |
| 	tr.DialContext = func(ctx context.Context, _, _ string) (net.Conn, error) {
 | |
| 		return dialer.DialContext(ctx, proto, addr)
 | |
| 	}
 | |
| 	return nil
 | |
| }
 |