Cleanup socket file

This commit is contained in:
Jason A. Donenfeld
2018-05-14 12:46:06 +02:00
parent 355e9bd619
commit 2dfd4e7d8c
2 changed files with 12 additions and 4 deletions

View File

@@ -57,7 +57,7 @@ func (l *UAPIListener) Close() error {
}
func (l *UAPIListener) Addr() net.Addr {
return nil
return l.listener.Addr()
}
func UAPIListen(name string, file *os.File) (net.Listener, error) {
@@ -75,6 +75,10 @@ func UAPIListen(name string, file *os.File) (net.Listener, error) {
connErr: make(chan error, 1),
}
if unixListener, ok := listener.(*net.UnixListener); ok {
unixListener.SetUnlinkOnClose(true)
}
socketPath := path.Join(
socketDirectory,
fmt.Sprintf(socketName, name),