Skip to content

Commit 9aeb3da

Browse files
Anton GushchaAnton Gushcha
Anton Gushcha
authored and
Anton Gushcha
committed
Update tutorial-server.hs
withSocketsDo for Windows platform
1 parent 158a6fd commit 9aeb3da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

static/tutorial/tutorial-server.hs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import Network.Transport
22
import Network.Transport.TCP (createTransport, defaultTCPParameters)
3+
import Network.Socket.Internal (withSocketsDo)
34
import Control.Concurrent
45
import Data.Map
56
import Control.Exception
@@ -44,7 +45,7 @@ p `onCtrlC` q = catchJust isUserInterrupt p (const $ q >> p `onCtrlC` q)
4445
isUserInterrupt _ = Nothing
4546

4647
main :: IO ()
47-
main = do
48+
main = withSocketsDo $ do
4849
[host, port] <- getArgs
4950
serverDone <- newEmptyMVar
5051
Right transport <- createTransport host port defaultTCPParameters

0 commit comments

Comments
 (0)