network-2.1.0.0: Networking-related facilitiesSource codeContentsIndex
Network.BSD
Portabilitynon-portable
Stabilityexperimental
Maintainerlibraries@haskell.org
Contents
Host names
Service names
Protocol names
Port numbers
Network names
Description
The Network.BSD module defines Haskell bindings to network programming functionality provided by BSD Unix derivatives.
Synopsis
type HostName = String
getHostName :: IO HostName
data HostEntry = HostEntry {
hostName :: HostName
hostAliases :: [HostName]
hostFamily :: Family
hostAddresses :: [HostAddress]
}
getHostByName :: HostName -> IO HostEntry
getHostByAddr :: Family -> HostAddress -> IO HostEntry
hostAddress :: HostEntry -> HostAddress
data ServiceEntry = ServiceEntry {
serviceName :: ServiceName
serviceAliases :: [ServiceName]
servicePort :: PortNumber
serviceProtocol :: ProtocolName
}
type ServiceName = String
getServiceByName :: ServiceName -> ProtocolName -> IO ServiceEntry
getServiceByPort :: PortNumber -> ProtocolName -> IO ServiceEntry
getServicePortNumber :: ServiceName -> IO PortNumber
type ProtocolName = String
type ProtocolNumber = CInt
data ProtocolEntry = ProtocolEntry {
protoName :: ProtocolName
protoAliases :: [ProtocolName]
protoNumber :: ProtocolNumber
}
getProtocolByName :: ProtocolName -> IO ProtocolEntry
getProtocolByNumber :: ProtocolNumber -> IO ProtocolEntry
getProtocolNumber :: ProtocolName -> IO ProtocolNumber
defaultProtocol :: ProtocolNumber
data PortNumber
type NetworkName = String
type NetworkAddr = CULong
data NetworkEntry = NetworkEntry {
networkName :: NetworkName
networkAliases :: [NetworkName]
networkFamily :: Family
networkAddress :: NetworkAddr
}
Host names
type HostName = StringSource
getHostName :: IO HostNameSource
Calling getHostName returns the standard host name for the current processor, as set at boot time.
data HostEntry Source
Constructors
HostEntry
hostName :: HostName
hostAliases :: [HostName]
hostFamily :: Family
hostAddresses :: [HostAddress]
show/hide Instances
getHostByName :: HostName -> IO HostEntrySource
Resolve a HostName to IPv4 address.
getHostByAddr :: Family -> HostAddress -> IO HostEntrySource
Get a HostEntry corresponding to the given address and family. Note that only IPv4 is currently supported.
hostAddress :: HostEntry -> HostAddressSource
Service names
data ServiceEntry Source
Constructors
ServiceEntry
serviceName :: ServiceName
serviceAliases :: [ServiceName]
servicePort :: PortNumber
serviceProtocol :: ProtocolName
show/hide Instances
type ServiceName = StringSource
getServiceByName :: ServiceName -> ProtocolName -> IO ServiceEntrySource
Get service by name.
getServiceByPort :: PortNumber -> ProtocolName -> IO ServiceEntrySource
Get the service given a PortNumber and ProtocolName.
getServicePortNumber :: ServiceName -> IO PortNumberSource
Get the PortNumber corresponding to the ServiceName.
Protocol names
type ProtocolName = StringSource
type ProtocolNumber = CIntSource
data ProtocolEntry Source
Constructors
ProtocolEntry
protoName :: ProtocolName
protoAliases :: [ProtocolName]
protoNumber :: ProtocolNumber
show/hide Instances
getProtocolByName :: ProtocolName -> IO ProtocolEntrySource
getProtocolByNumber :: ProtocolNumber -> IO ProtocolEntrySource
getProtocolNumber :: ProtocolName -> IO ProtocolNumberSource
defaultProtocol :: ProtocolNumberSource
This is the default protocol for a given service.
Port numbers
data PortNumber Source
show/hide Instances
Network names
type NetworkName = StringSource
type NetworkAddr = CULongSource
data NetworkEntry Source
Constructors
NetworkEntry
networkName :: NetworkName
networkAliases :: [NetworkName]
networkFamily :: Family
networkAddress :: NetworkAddr
show/hide Instances
Produced by Haddock version 0.8