Documentation ¶
Overview ¶
Package activation implements primitives for systemd socket activation.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Files ¶
Files returns a slice containing a `os.File` object for each file descriptor passed to this process via systemd fd-passing protocol.
The order of the file descriptors is preserved in the returned slice. `unsetEnv` is typically set to `true` in order to avoid clashes in fd usage and to avoid leaking environment flags to child processes.
func Listeners ¶
Listeners returns a slice containing a net.Listener for each matching socket type passed to this process.
The order of the file descriptors is preserved in the returned slice. Nil values are used to fill any gaps. For example if systemd were to return file descriptors corresponding with "udp, tcp, tcp", then the slice would contain {nil, net.Listener, net.Listener}
func ListenersWithNames ¶
ListenersWithNames maps a listener name to a set of net.Listener instances.
func TLSListeners ¶
TLSListeners returns a slice containing a net.listener for each matching TCP socket type passed to this process. It uses default Listeners func and forces TCP sockets handlers to use TLS based on tlsConfig.
Types ¶
This section is empty.