- module Network.Tremulous.NameInsensitive
- data Delay = Delay {
- packetTimeout :: !Int
- packetDuplication :: !Int
- throughputDelay :: !Int
- data Team
- = Spectators
- | Aliens
- | Humans
- | Unknown
- data GameServer = GameServer {}
- data Player = Player {}
- data MasterServer = MasterServer {
- masterAddress :: !SockAddr
- masterProtocol :: !Int
- data PollResult = PollResult {
- polled :: ![GameServer]
- serversResponded :: !Int
- serversRequested :: !Int
- respondedCache :: !(Set SockAddr)
- defaultDelay :: Delay
- parseGameServer :: SockAddr -> ByteString -> Maybe GameServer
- proto2string :: IsString s => Int -> s
- string2proto :: (IsString s, Eq s) => s -> Maybe Int
- parseMasterServer :: ByteString -> [SockAddr]
- unpack :: ByteString -> [Char]
Documentation
Delay | |
|
data MasterServer Source
data PollResult Source
PollResult | |
|
proto2string :: IsString s => Int -> sSource
unpack :: ByteString -> [Char]
O(n) Converts a ByteString
to a String
.