mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-03-03 18:04:40 +01:00
34 lines
1 KiB
Go
34 lines
1 KiB
Go
//go:build !android
|
|
|
|
package main
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/coreos/go-systemd/activation"
|
|
"github.com/jedisct1/dlog"
|
|
)
|
|
|
|
func (proxy *Proxy) addSystemDListeners() error {
|
|
files := activation.Files(true)
|
|
|
|
if len(files) > 0 {
|
|
if len(proxy.userName) > 0 || proxy.child {
|
|
dlog.Fatal(
|
|
"Systemd activated sockets are incompatible with privilege dropping. Remove activated sockets and fill `listen_addresses` in the dnscrypt-proxy configuration file instead.",
|
|
)
|
|
}
|
|
dlog.Warn("Systemd sockets are untested and unsupported - use at your own risk")
|
|
}
|
|
for i, file := range files {
|
|
defer file.Close()
|
|
if listener, err := net.FileListener(file); err == nil {
|
|
proxy.registerTCPListener(listener.(*net.TCPListener))
|
|
dlog.Noticef("Wiring systemd TCP socket #%d, %s, %s", i, file.Name(), listener.Addr())
|
|
} else if pc, err := net.FilePacketConn(file); err == nil {
|
|
proxy.registerUDPListener(pc.(*net.UDPConn))
|
|
dlog.Noticef("Wiring systemd UDP socket #%d, %s, %s", i, file.Name(), pc.LocalAddr())
|
|
}
|
|
}
|
|
return nil
|
|
}
|