Irc_messageSourceIRC message parsing.
type command = | PASS of string| NICK of string| USER of string listsee rfc
*)| OPER of string * stringname * password
*)| MODE of string * stringnick * mode string
*)| QUIT of stringquit message
*)| SQUIT of string * stringserver * comment
*)| JOIN of string list * string listchannels * key list
*)| JOIN0join 0 (parts all channels)
*)| PART of string list * stringchannels * comment
*)| TOPIC of string * stringchan * topic
*)| NAMES of string listchannels
*)| LIST of string listchannels
*)| INVITE of string * stringnick * chan
*)| KICK of string list * string * stringchannels * nick * comment
*)| PRIVMSG of string * stringtarget * message
*)| NOTICE of string * stringtarget * message
*)| PING of string * string| PONG of string * string| Other of string * string listother cases
*)A type representing an IRC command, following RFC 2812
Exposed for testing - not intended for use.
Exposed for testing - not intended for use.