Difference between revisions of "Numerics"

From IRC Wiki
Jump to navigation Jump to search
(Created page with "{{Stub}} Numerics are the name of the commands that are three digits long. For example, The numeric '005' is the numeric for the ISUPPORT replyname.")
 
(Added some more info and extended the page (and added a link to my site, the irc-defs list) ~~~~)
 
Line 1: Line 1:
{{Stub}}
{{Stub}}


Numerics are the name of the commands that are three digits long.
Numerics are the name of the commands that are three digits long. They range from '000' to '999' and cannot be sent from a client to a server.


For example, The numeric '005' is the numeric for the ISUPPORT replyname.
Numerics have names such as <tt>RPL_WELCOME</tt>, <tt>RPL_ISUPPORT</tt>, and <tt>RPL_ENDOFMOTD</tt>. For example, the numeric <tt>'001'</tt> means <tt>RPL_WELCOME</tt>, and the numeric <tt>'306'</tt> means <tt>RPL_AWAY</tt>.
 
These names and the meaning of different numerics are defined in [http://tools.ietf.org/html/rfc1459 RFC1459] and [http://tools.ietf.org/html/rfc2812 RFC2812]. However, many others have been defined and are used by IRC networks today which are not defined in these specifications (such as <tt>'005'</tt> which means <tt>RPL_ISUPPORT</tt>). Some numerics defined in these specifications now mean something different. For instance, the numeric <tt>'005'</tt> is defined as <tt>RPL_BOUNCE</tt> in [https://tools.ietf.org/html/rfc2812#section-5.1 RFC2812], when it actually means <tt>RPL_ISUPPORT</tt> when used by networks today.
 
An extensive list of numerics, including obsolete and conflicting definitions, can be found on the [http://defs.ircdocs.horse/defs/ircnumerics.html irc-defs numerics list] page.
 
==External links==
* [http://tools.ietf.org/html/rfc1459#section-6 RFC1459 Section 6]
* [https://tools.ietf.org/html/rfc2812#section-5 RFC2812 Section 5]
* [http://defs.ircdocs.horse/defs/ircnumerics.html irc-defs numerics list]

Latest revision as of 02:50, 29 March 2016

Template:Stub

Numerics are the name of the commands that are three digits long. They range from '000' to '999' and cannot be sent from a client to a server.

Numerics have names such as RPL_WELCOME, RPL_ISUPPORT, and RPL_ENDOFMOTD. For example, the numeric '001' means RPL_WELCOME, and the numeric '306' means RPL_AWAY.

These names and the meaning of different numerics are defined in RFC1459 and RFC2812. However, many others have been defined and are used by IRC networks today which are not defined in these specifications (such as '005' which means RPL_ISUPPORT). Some numerics defined in these specifications now mean something different. For instance, the numeric '005' is defined as RPL_BOUNCE in RFC2812, when it actually means RPL_ISUPPORT when used by networks today.

An extensive list of numerics, including obsolete and conflicting definitions, can be found on the irc-defs numerics list page.

External links