Skip to content

Commit 158a6fd

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

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

static/tutorial/tutorial-client.hs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import Network.Transport
22
import Network.Transport.TCP (createTransport, defaultTCPParameters)
3+
import Network.Socket.Internal (withSocketsDo)
34
import System.Environment
45
import Control.Monad
56
import Data.ByteString.Char8
67

78
main :: IO ()
8-
main = do
9+
main = withSocketsDo $ do
910
[host, port, serverAddr] <- getArgs
1011
Right transport <- createTransport host port defaultTCPParameters
1112
Right endpoint <- newEndPoint transport

0 commit comments

Comments
 (0)