Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

For 2.7.0.0 #310

Merged
merged 19 commits into from
Mar 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Network.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{-# LANGUAGE CPP #-}
{-# OPTIONS_GHC -fno-warn-warnings-deprecations #-}
{-# OPTIONS_HADDOCK hide #-}
-----------------------------------------------------------------------------
-- |
-- Module : Network
Expand All @@ -25,7 +26,7 @@
#define IPV6_SOCKET_SUPPORT 1
#endif

module Network
module Network {-# DEPRECATED "The high level Network interface is no longer supported. Please use Network.Socket." #-}
(
-- * Basic data types
Socket
Expand Down
4 changes: 3 additions & 1 deletion Network/BSD.hsc
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{-# LANGUAGE CPP, ForeignFunctionInterface #-}
{-# OPTIONS_HADDOCK hide #-}
{-# OPTIONS_GHC -fno-warn-warnings-deprecations #-}
-----------------------------------------------------------------------------
-- |
-- Module : Network.BSD
Expand All @@ -16,7 +18,7 @@

#include "HsNet.h"

module Network.BSD
module Network.BSD {-# DEPRECATED "This platform dependent module is no longer supported." #-}
(
-- * Host names
HostName
Expand Down
Loading