fastirc-0.1.1: Fast Internet Relay Chat (IRC) library

Stabilityexperimental
MaintainerErtugrul Soeylemez

Network.FastIRC.Messages

Contents

Description

Parser for IRC messages.

Synopsis

IRC messages

data Message Source

Data type for IRC messages.

Constructors

Message 

Fields

msgOrigin :: !(Maybe UserSpec)

Message origin (user/server).

msgCommand :: !Command

Message command or numeric.

Instances

messageParser :: ServerSet -> Parser MessageSource

Parser for IRC messages.

IRC commands

data Command Source

Data type for IRC commands.

Constructors

StringCmd ByteString [ByteString]

Arbitrary string command.

NumericCmd Integer [ByteString]

Arbitrary numeric command.

Instances

commandParser :: Parser CommandSource

Parser for IRC commands and their arguments.