Skip to content

Commit 5b09871

Browse files
committedMay 15, 2020
defining openSocket.
1 parent 766871f commit 5b09871

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed
 

‎Network/Socket.hs

+1
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ module Network.Socket
149149
-- * Socket
150150
, Socket
151151
, socket
152+
, openSocket
152153
, withFdSocket
153154
, unsafeFdSocket
154155
, touchSocket

‎Network/Socket/Info.hsc

+10
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ import System.IO.Error (ioeSetErrorString, mkIOError)
1515

1616
import Network.Socket.Imports
1717
import Network.Socket.Internal
18+
import Network.Socket.Syscall
1819
import Network.Socket.Types
1920

2021
-----------------------------------------------------------------------------
@@ -487,3 +488,12 @@ showHostAddress6 ha6@(a1, a2, a3, a4)
487488
begin = end + diff -- the longest run of zeros
488489
(diff, end) = minimum $
489490
scanl (\c i -> if i == 0 then c - 1 else 0) 0 fields `zip` [0..]
491+
492+
-----------------------------------------------------------------------------
493+
494+
-- | A utility function to open a socket with `AddrInfo`.
495+
-- This is a just wrapper for the following code:
496+
--
497+
-- > \addr -> socket (addrFamily addr) (addrSocketType addr) (addrProtocol addr)
498+
openSocket :: AddrInfo -> IO Socket
499+
openSocket addr = socket (addrFamily addr) (addrSocketType addr) (addrProtocol addr)

0 commit comments

Comments
 (0)
Please sign in to comment.