File tree 3 files changed +8
-1
lines changed
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
{-# LANGUAGE CPP, ForeignFunctionInterface #-}
2
2
{-# OPTIONS_HADDOCK hide #-}
3
+ {-# OPTIONS_GHC -fno-warn-warnings-deprecations #-}
3
4
-----------------------------------------------------------------------------
4
5
-- |
5
6
-- Module : Network.BSD
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ module Network.Socket
223
223
#ifdef SCM_RIGHTS
224
224
, sCM_RIGHTS
225
225
#endif
226
- -- * Internal - don't use this
226
+ -- ** Decrecated internal functions
227
227
, packFamily
228
228
, unpackFamily
229
229
, packSocketType
Original file line number Diff line number Diff line change @@ -193,6 +193,8 @@ packSocketType' stype = case Just stype of
193
193
#endif
194
194
_ -> Nothing
195
195
196
+ {-# DEPRECATED packSocketType "Don't use this" #-}
197
+
196
198
packSocketType :: SocketType -> CInt
197
199
packSocketType stype = fromMaybe (error errMsg) (packSocketType' stype)
198
200
where
@@ -312,6 +314,8 @@ data Family
312
314
| AF_CAN -- Controller Area Network
313
315
deriving (Eq , Ord , Read , Show )
314
316
317
+ {-# DEPRECATED packFamily "Don't use this" #-}
318
+
315
319
packFamily :: Family -> CInt
316
320
packFamily f = case packFamily' f of
317
321
Just fam -> fam
@@ -528,6 +532,8 @@ packFamily' f = case Just f of
528
532
529
533
--------- ----------
530
534
535
+ {-# DEPRECATED unpackFamily "Don't use this" #-}
536
+
531
537
unpackFamily :: CInt -> Family
532
538
unpackFamily f = case f of
533
539
(# const AF_UNSPEC ) -> AF_UNSPEC
You can’t perform that action at this time.
0 commit comments