AutoRegister performs the task of registering the user with the server
once connected, including finding an appropriate nickname to use if the
desired one is taken.
BAD -
Static variable in class f00f.net.irc.martyr.Debug
Some kind of badness is going on here, but it is within acceptable limits
and handled nicely.
BanMode - class f00f.net.irc.martyr.modes.channel.BanMode.
Channel Ban and Exception - When a user requests to join a
channel, his local server checks if the user's address matches
any of the ban masks set for the channel.
BanMode() -
Constructor for class f00f.net.irc.martyr.modes.channel.BanMode
C
Channel - class f00f.net.irc.martyr.clientstate.Channel.
Channel is simply a repository for information about a channel.
Channel Ban and Exception - When a user requests to join a
channel, his local server checks if the user's address matches
any of the ban masks set for the channel.
Channel Invitation - For channels which have the invite-only
flag set (See Section 4.2.2 (Invite Only Flag)), users whose
address matches an invitation mask set for the channel are
allowed to join the channel without any
invitation.
Invite Only Flag - When the channel flag 'i' is set, new
members are only accepted if their mask matches Invite-list (See
section 4.3.2) or they have been invited by a channel operator.
This constructor is used to make a request to join a channel that
requires a secret key to join.
K
KeyMode - class f00f.net.irc.martyr.modes.channel.KeyMode.
Channel Key - When a channel key is set (by using the mode
'k'), servers MUST reject their local users request to join the
channel unless this key is given.
KeyMode() -
Constructor for class f00f.net.irc.martyr.modes.channel.KeyMode
Takes a mode string, such as: '+ooo A B C' or '+o A +o B' or even
'+o-o A B' and returns a List containing Mode objects that
correspond to the modes specified.