Skip to content
Snippets Groups Projects
Commit 4f6a4e25 authored by Jens Nolte's avatar Jens Nolte
Browse files

Use withFdSocket instead of setCloseOnExecIfNeeded

parent 85999aa4
No related branches found
No related tags found
No related merge requests found
...@@ -213,8 +213,7 @@ listenUnixSocket options@MainOptions{verbose} bar commandHandler = do ...@@ -213,8 +213,7 @@ listenUnixSocket options@MainOptions{verbose} bar commandHandler = do
socketExists <- doesFileExist socketPath socketExists <- doesFileExist socketPath
when socketExists $ removeFile socketPath when socketExists $ removeFile socketPath
sock <- socket AF_UNIX Stream defaultProtocol sock <- socket AF_UNIX Stream defaultProtocol
-- TODO: unsafe probably not what we want withFdSocket sock setCloseOnExecIfNeeded
setCloseOnExecIfNeeded =<< unsafeFdSocket sock
bind sock (SockAddrUnix socketPath) bind sock (SockAddrUnix socketPath)
listen sock 5 listen sock 5
forever $ do forever $ do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment