Skip to content

Commit 2156c61

Browse files
committed
deprecating internal functions.
1 parent 6f64d3e commit 2156c61

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

Network/BSD.hsc

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{-# LANGUAGE CPP, ForeignFunctionInterface #-}
22
{-# OPTIONS_HADDOCK hide #-}
3+
{-# OPTIONS_GHC -fno-warn-warnings-deprecations #-}
34
-----------------------------------------------------------------------------
45
-- |
56
-- Module : Network.BSD

Network/Socket.hsc

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ module Network.Socket
223223
#ifdef SCM_RIGHTS
224224
, sCM_RIGHTS
225225
#endif
226-
-- * Internal - don't use this
226+
-- ** Decrecated internal functions
227227
, packFamily
228228
, unpackFamily
229229
, packSocketType

Network/Socket/Types.hsc

+6
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,8 @@ packSocketType' stype = case Just stype of
193193
#endif
194194
_ -> Nothing
195195

196+
{-# DEPRECATED packSocketType "Don't use this" #-}
197+
196198
packSocketType :: SocketType -> CInt
197199
packSocketType stype = fromMaybe (error errMsg) (packSocketType' stype)
198200
where
@@ -312,6 +314,8 @@ data Family
312314
| AF_CAN -- Controller Area Network
313315
deriving (Eq, Ord, Read, Show)
314316

317+
{-# DEPRECATED packFamily "Don't use this" #-}
318+
315319
packFamily :: Family -> CInt
316320
packFamily f = case packFamily' f of
317321
Just fam -> fam
@@ -528,6 +532,8 @@ packFamily' f = case Just f of
528532

529533
--------- ----------
530534

535+
{-# DEPRECATED unpackFamily "Don't use this" #-}
536+
531537
unpackFamily :: CInt -> Family
532538
unpackFamily f = case f of
533539
(#const AF_UNSPEC) -> AF_UNSPEC

0 commit comments

Comments
 (0)