devout: unlink socket pathname before binding
This commit is contained in:
parent
12275f6896
commit
32bf80c6fa
@ -131,6 +131,7 @@
|
||||
(fn unix-socket [name]
|
||||
(let [addr (string.pack "=Hz" AF_LOCAL name)
|
||||
fd (check-errno (ll.socket AF_LOCAL SOCK_STREAM 0))]
|
||||
(os.remove name)
|
||||
(check-errno (ll.bind fd addr))
|
||||
(check-errno (ll.listen fd 32))
|
||||
fd))
|
||||
|
Loading…
Reference in New Issue
Block a user