Internet Relay Chat

Internet Relay Chat

Internet Relay Chat (IRC) is a protocol for real-time Internet text messaging (chat) or synchronous conferencing.[1] It is mainly designed for group communication in discussion forums, called channels,[2] but also allows one-to-one communication via private message[3] as well as chat and data transfer,[4] including file sharing.[5]

IRC was created in 1988. Client software is now available for every major operating system that supports Internet access.[6] As of April 2011, the top 100 IRC networks served more than half a million users at a time,[7] with hundreds of thousands of channels[7] operating on a total of roughly 1,500 servers[7] out of roughly 3,200 servers worldwide.[8]

Contents

History

IRC was created by Jarkko Oikarinen in August 1988 to replace a program called MUT (MultiUser Talk) on a BBS called OuluBox in Finland.[9] Oikarinen found inspiration in a chat system known as Bitnet Relay, which operated on the BITNET.[9]

IRC was used to report on the 1991 Soviet coup d'état attempt throughout a media blackout.[10] It was previously used in a similar fashion during the Gulf War.[11] Logs of these and other events are kept in the ibiblio archive.[12]

Technical information

A Screenshot of XChat, a cross-platform IRC client.
Xaric, a text-based IRC client, in use on Mac OS X. Shown are two IRC channels and a private conversation with the software author.

IRC is an open protocol that uses TCP[1] and optionally TLS. An IRC server can connect to other IRC servers to expand the IRC network.[13] Users access IRC networks by connecting a client to a server.[14] There are many client implementations such as mIRC or XChat and server implementations, e.g. the original IRCd. Most IRC servers do not require users to register an account but a user will have to set a nickname before being connected.[15]

IRC was originally a plain text protocol[1] (although later extended), which on request was assigned port 194/TCP by IANA.[16] However, the de facto has always been to run IRC on 6667/TCP[17] and nearby port numbers (for example TCP ports 6660-6669, 7000)[18] to avoid having to run the IRCd software with root privileges.

The protocol specified that characters were 8-bit but did not specify the character encoding the text was supposed to use.[19] This can cause problems when users using different clients and/or different platforms want to converse.

All client-to-server IRC protocols in use today are descended from the protocol implemented in the irc2.4.0 version of the IRC2 server, and documented in RFC 1459. Since RFC 1459 was published, the new features in the irc2.10 implementation led to the publication of several revised protocol documents (RFC 2810, RFC 2811, RFC 2812 and RFC 2813); however, these protocol changes have not been widely adopted among other implementations.[citation needed]

Although many specifications on the IRC protocol have been published, there is no official specification, as the protocol remains dynamic. Virtually no clients and very few servers rely strictly on the above RFCs as a reference.[citation needed]

Microsoft made an extension for IRC in 1998 via the proprietary IRCX.[20] They later stopped distributing software supporting IRCX, instead developing the proprietary MSN .NET Messenger Service.

New protocol IRCwx (IRC web extension) inspired by IRCX is made by net-bits.net in an attempt to modernize IRCX for web use.[21]

The standard structure of a network of IRC servers is a tree.[22] Messages are routed along only necessary branches of the tree but network state is sent to every server[23] and there is generally a high degree of implicit trust between servers. This architecture has a number of problems. A misbehaving or malicious server can cause major damage to the network[24] and any changes in structure, whether intentional or a result of conditions on the underlying network, require a net-split and net-join. This results in a lot of network traffic and spurious quit/join messages to users[25] and temporary loss of communication to users on the splitting servers. Adding a server to a large network means a large background bandwidth load on the network and a large memory load on the server. Once established however, each message to multiple recipients is delivered in a fashion similar to multicast, meaning each message travels a network link exactly once.[26] This is a strength in comparison to non-multicasting protocols such as Simple Mail Transfer Protocol (SMTP) or Extensible Messaging and Presence Protocol (XMPP).

Commands and replies

IRC is based on a line-based structure with the client sending single-line messages to the server,[27] receiving replies to those messages[28] and receiving copies of some messages sent by other clients. In most clients users can enter commands by prefixing them with a '/'. Depending on the command, these may either be handled entirely by the client, or (generally for commands the client does not recognize) passed directly to the server, possibly with some modification.[citation needed]

Due to the nature of the protocol automated systems cannot always correctly pair a sent command with its reply with full reliability and are subject to guessing.[29]

Channels

The basic means of communicating to a group of users in an established IRC session is through a channel.[30] Channels on a network can be displayed using the IRC command LIST[31] that lists all currently available channels, that do not have the modes +s or +p set, on that particular network.

Users can join to a channel using the JOIN command,[32] in most clients available as /join #channelname. Messages sent to the joined channels are then relayed to all other users.[30]

Channels that are available across an entire IRC network are prepended with a '#', while those local to a server use '&'.[33] Other non-standard and less common channel types include '+' channels—'modeless' channels without operators —[34] and '!' channels, a form of timestamped channel on normally non-timestamped networks.[35]

Modes

Users and channels may have modes that are represented by single case-sensitive letters[36] and are set using the MODE command.[37] User modes and channel modes are separate and can use the same letter to mean different things (e.g. usermode "i" is invisible mode whilst channelmode "i" is invite only.[38]) Modes are usually set and unset using the mode command that takes a target (user or channel), a set of modes to set (+) or unset (-) and any parameters the modes need.

Some but not all channel modes take parameters and some channel modes apply to a user on a channel or add or remove a mask (e.g. a ban mask) from a list associated with the channel rather than applying to the channel as a whole.[39] Modes that apply to users on a channel have an associated symbol that is used to represent the mode in names replies[40] (sent to clients on first joining a channel[32] and use of the names command) and in many clients also used to represent it in the client's displayed list of users in a channel or to display an own indicator for a user's modes.

In order to correctly parse incoming mode messages and track channel state the client must know which mode is of which type and for the modes that apply to a user on a channel which symbol goes with which letter. In early implementations of IRC this had to be hard-coded in the client but there is now a de-facto standard extension to the protocol called ISUPPORT that sends this information to the client at connect time using numeric 005.[41][42]

There is a small design fault in IRC regarding modes that apply to users on channels, the names message used to establish initial channel state can only send one such mode per user on the channel,[40] but multiple such modes can be set on a single user. For example, if a user holds both operator status (+o) and voice status (+v) on a channel, a new client will be unable to know the less precedented mode (voice). Workarounds for this are possible on both the client and server side but none is widely implemented.

Standard (RFC1459) modes

User modes
Letter Symbol Description
i Invisible—cannot be seen without a common channel or knowing the exact name
s Receives server notices
w Receives wallops[43][44]
o User is an IRC operator (ircop)
Channel modes
Letter Symbol Parameter(s) Description
o @ Name of affected user Channel operator—can change channel modes and kick users out of the channel among other things
s Secret channel—not shown in channel list or user whois except to users already on the channel
p Private channel—listed in channel list as "prv" according to RFC 1459
n Users cannot send messages to the channel externally
m Channel is moderated (only those who hold operator or voice status on the channel can send messages to it)
i Only users with invites may enter the channel.
t Only operators can change the channel topic.
l Limit number Limits number of users able to be on channel (when full, no new users can join)
b Ban mask (nick!user@host with wildcards allowed) Bans hostmasks from channel
v + Name of affected user Gives a user voice status on channel (see +m above)
k None New channel key Sets a channel key such that only users knowing the key can enter

Many IRCd programmers have added extra modes or modified the behavior of modes in the above list[45][46][47][48] so it is strongly advisable to check the documentation of the IRC network or IRCd (though note that the network may have patched the IRCd) for more detailed information on what the modes do on a particular server or network.

IRC operators

There are also users who maintain elevated rights on their local server, or the entire network; these are called IRC operators,[49] sometimes shortened to IRCops. As the implementation of the IRCd varies, so do the privileges of the IRC operator on the given IRCd. RFC1459[49] claims that IRC operators are "a necessary evil" to keep clean state of the network, as such they need to be able to disconnect and reconnect servers. Additionally, to prevent malicious users or even harmful automated programs from entering IRC, IRC operators usually are allowed to disconnect Clients and completely ban IPs and complete subnets. Networks that carry services (Nickserv et al.) usually allow their IRC operators also to handle basic "Ownership" matters. Further privileged rights may include overriding channel bans (being able to join channels they would not be allowed to join, if they were not opered), being able to op themselves on channels where they would not be able without being opered, being auto-opped on channels always and so forth.

An IRC Channel Operator is a client on an IRC channel that manages the channel. IRC Channel Operators Can be easily seen by a symbol "@" or a Latin letter "+o"/"o". On most networks, an operator can:

  • Kick a user
  • Ban a user
  • Give other user IRC Channel Operator Status or IRC Channel Voice Status.
  • Change the IRC Channel topic.
  • Change the IRC Channel Mode locks.

Hostmasks

A hostmask is a unique identifier of an IRC client connected to an IRC server.[50][51] IRC services and bots can use it to identify the client. The hostmask looks similar to, but should not be confused with an e-mail address. It is a combination of the nickname, ident, and hostname.[52] If ident is not available, then the username is used after being prefixed with a tilde.[53] If the IP address cannot be resolved to a valid hostname, then the IP address is used instead.

Challenges

Issues in the original design of IRC were the amount of shared state data[54][55] being a limitation on its scalability,[56] the absence of unique user identifications leading to the nickname collision problem,[57] lack of protection from netsplits by means of cyclic routing,[58][59] the trade-off in scalability for the sake of real-time user presence information,[60] protocol weaknesses providing a platform for abuse,[61] no transparent and optimizable message passing,[62] no encryption.[63] Some of these issues have been addressed in Modern IRC.

Attacks

Because IRC connections are usually unencrypted and typically span long time periods, they are an attractive target for hackers. Because of this, careful security policy is necessary to ensure that an IRC network is not susceptible to an attack such as an IRC takeover war. IRC networks may also K-line or G-line users or networks that have a harming effect.

A small number of IRC servers support SSL connections for security purposes. This helps stop the use of packet sniffer programs to obtain the passwords of IRC users, but has little use beyond this scope due to the public nature of IRC channels. SSL connections require both client and server support (that may require the user to install SSL binaries and IRC client specific patches or modules on their computers). Some networks also use SSL for server to server connections, and provide a special channel flag (such as +S) to only allow SSL-connected users on the channel, while disallowing operator identification in clear text, to better utilize the advantages that SSL provide.

IRC served as an early laboratory for many kinds of Internet attacks, such as using fake ICMP unreachable messages to break TCP-based IRC connections (nuking) to annoy users or facilitate takeovers.

Abuse prevention

One of the most contentious technical issues surrounding IRC implementations, which survives to this day, is the merit of "Nick/Channel Delay" vs. "Timestamp" protocols. Both methods exist to solve the problem of denial-of-service attacks, but take very different approaches. The problem with the original IRC protocol as implemented was that when two servers split and rejoined, the two sides of the network would simply merge their channels. If a user could join on a "split" server, where a channel that existed on the other side of the network was empty, and gain operator status, they would become a channel operator of the "combined" channel after the netsplit ended; if a user took a nickname that existed on the other side of the network, the server would kill both users when rejoining (i.e., 'nick-collision'). This was often abused to "mass-kill" all users on a channel, thus creating "opless" channels where no operators were present to deal with abuse. Apart from causing problems within IRC, this encouraged people to conduct denial of service attacks against IRC servers in order to cause netsplits, which they would then abuse.

Nick/channel delay

The nick/channel delay (abbreviated ND/CD) solution to this problem was very simple. After a user signed off and the nickname became available, or a channel ceased to exist because all its users left (as often happens during a netsplit), the server would not allow any user to use that nickname or join that channel, until a certain period of time (the delay) had passed. The idea behind this was that even if a netsplit occurred, it was useless to an abuser because they could not take the nickname or gain operator status on a channel, and thus no collision of a nickname or 'merging' of a channel could occur. To some extent, this inconvenienced legitimate users, who might be forced to briefly use a different name (appending an underscore was popular) after rejoining.

Timestamping

The alternative, the timestamp or TS protocol, took a different approach. Every nickname and channel on the network was assigned a timestamp – the date and time when it was created. When a netsplit occurred, two users on each side were free to use the same nickname or channel, but when the two sides were joined, only one could survive. In the case of nicknames, the newer user, according to their TS, was killed; when a channel collided, the members (users on the channel) were merged, but the channel operators on the "losing" side of the split lost their channel operator status. TS is a much more complicated protocol than ND/CD, both in design and implementation, and despite having gone through several revisions, some implementations still have problems with "desyncs" (where two servers on the same network disagree about the current state of the network), and allowing too much leniency in what was allowed by the 'losing' side. Under the original TS protocols, for example, there was no protection against users setting bans or other modes in the losing channel that would then be merged when the split rejoined, even though the users who had set those modes lost their channel operator status. Some modern TS-based IRC servers have also incorporated some form of ND and/or CD in addition to timestamping in an attempt to further curb abuse. Most networks today use the timestamping approach. The timestamp versus ND/CD disagreements caused several servers to split away from EFnet and form the newer IRCnet. After the split, EFnet moved to a TS protocol, while IRCnet used ND/CD.

SAVE

In recent Versions of the ircnet IRCd, ND has been extended/replaced by a mechanism called SAVE. This mechanism assigns every client a unique UID upon connecting to an IRC Server. This ID starts with a number, which is forbidden in nicks. Clients may now choose to use their UID or any free nick; however, if two clients with the same nickname are joined from different sides of a netsplit ("Collision"), the first server to see this collision will force BOTH clients to change their nick to their UID, thus SAVEing both clients from being disconnected. The nickname will be locked for some time (ND) to prevent both clients to change to the original nickname back, thus colliding again.

Networks

The first IRC server, tolsun.oulu.fi, a Sun-3 server on display near the University of Oulu computer centre. (2001)

There are thousands of running IRC networks in the world. They run various implementations of IRC servers, and are administered by various groups of IRC operators, but the protocol exposed to IRC users is very similar, and all IRC networks can be accessed by the same client software, although there might be slight incompatibilities and limited functionality due to the differing server implementations.[citation needed]

The largest IRC networks have traditionally been grouped as the "Big Four"[64][65][66][67] — a designation for networks that top the statistics. The Big Four networks change periodically, but due to the community nature of IRC there are a large number of other networks for users to choose from.

Historically the "Big Four" were:[64][65][66]

Today the "Big Four" are:[67]

freenode is quite popular with community-based projects, especially free and open source software projects. Many users of various FOSS projects use freenode since a lot of these projects have official IRC channels there.

URI scheme

There is an irc: URI scheme that (when supported) allows hyperlinks of various forms, including

irc://<host>[:<port>]/[<channel>[?<channel_keyword>]]

(where items enclosed within brackets ([,]) are optional) to be used to (if necessary) connect to the specified host (or network, if known to the IRC client) and join the specified channel.[68] (This can be used within the client itself, or from another application such as a Web browser).

Per the specification, the usual hash symbol (#) will be prepended to channel names that do not begin with an alphanumeric character—allowing it to be omitted. Some implementations (for example, mIRC) will do so unconditionally resulting in a (usually unintended) extra (for example, ##channel), if included in the URL.

Some implementations allow multiple channels to be specified, separated by commas.[citation needed]

Clients

Client software

Scheme of an IRC network with normal clients (green), bots (blue) and bouncers (orange)

In different operating systems, some of the most popular clients are:

The higher-level programs also serve as platforms for the IRC clients. For instance,

  • a client called ERC, written entirely in Emacs Lisp is included in v.22.3 of Emacs. Therefore, any platform that can run Emacs can run ERC.
  • There are a number of Web browsers with built-in IRC clients. Opera has a built in IRC client.[70] To Mozilla Firefox, ChatZilla add-on can be installed. Web-based clients include Mibbit, qwebirc and WebIRC.
  • Built-in IRC is utilized by many computer games, such as War§ow,[71] Unreal Tournament (up to Unreal Tournament 2004),[72] Uplink,[73] Spring Games and ZDaemon.[74] Ustream's chat interface is IRC with custom authentication.[75] Justin.tv's chat interface is IRC with custom authentication as with Ustream's.[76]

Bots

Automated clients are called bots. As bots evolved, they began to serve as permanent points of contact for information exchange and protection agents for the channels they served, because of their superior speed when compared to humans. Presently, although many of these functions are often delegated to network-provided services that allow for registration and management of both nicknames and channels, bots remain popular and continue to be adapted to new and unexpected tasks.

Bots have been written in a variety of languages, and a wide array of implementations exist. Most modern IRC services typically implement bot-like interfaces, through which users can communicate with and control the functionality. Bots have also been created for malevolent uses, such as flooding or taking over channels, ousting their rightful owners.

Bouncer

A program that runs as a daemon on a server and functions as a persistent proxy is known as a BNC or bouncer. The purpose is to maintain a connection to an IRC server, acting as a relay between the server and client, or simply to act as a proxy.[citation needed] Should the client lose network connectivity, the BNC may stay connected and archive all traffic for later delivery, allowing the user to resume his IRC session without disrupting their connection to the server.[77]

Furthermore, as a way of obtaining a bouncer-like effect, an IRC client (typically text-based, for example Irssi) may be run on an always-on server to which the user connects via ssh. This also allows devices that only have ssh functionality, but no actual IRC client installed themselves, to connect to the IRC, and it allows sharing of IRC sessions.[78]

To keep the IRC client from quitting when the ssh connection closes, the client can be run inside a piece of screen-detaching software (e.g. GNU Screen or tmux), thus staying connected to the IRC network(s) constantly and able to log conversation in channels that the user is interested in, etc. Modelled after this setup, in 2004 an IRC client following the client-server model, called Smuxi, has been launched.[79][80]

Search engines

There are numerous search engines available to aid the user in finding what they are looking for on IRC.[81][82] Generally the search engine consists of two parts, a "back-end" (or "spider/crawler") and a front-end "search engine".

The back-end (spider/crawler) is the work horse of the search engine. It is responsible for crawling IRC servers to index the information being sent across them. The information that is indexed usually consists solely of channel text (text that is publicly displayed in public channels). The storage method is usually some sort of relational database, like MySQL or Oracle.[citation needed]

The front-end "search engine" is the user interface to the database. It supplies users with a way to search the database of indexed information to retrieve the data they are looking for. These front-end search engines can also be coded in numerous programming languages. The more popular languages for such search engines and indexing spiders are Perl, PHP and C.[citation needed]

Most search engines have their own spider that is a single application responsible for crawling IRC and indexing data itself; however, others are "user based" indexers. The latter rely on users to install their "add-on" to their IRC client; the add-on is what sends the database the channel information of whatever channels the user happens to be on.[citation needed] IRC search engines have completely automated the process of finding information on IRC and have thus contributed greatly to the popularity of IRC in recent years.[citation needed]

Modern IRC

IRC has changed much over its life on the Internet. New server software has added a multitude of new features.

  • Services: Network-operated bots to facilitate registration of nicknames and channels, sending messages for offline users and network operator functions.
  • Extra modes: While the original IRC system used a set of standard user and channel modes, new servers add many new modes for such features as removing color codes from text, or obscuring a user's hostmask ("cloaking") to protect from denial-of-service attacks.[citation needed]
  • Proxy detection: Most modern servers support detection of users attempting to connect through an insecure (misconfigured or exploited) proxy server, which can then be denied a connection. An example is the Blitzed Open Proxy Monitor or BOPM. This proxy detection software is used by several networks, although that real time list of proxies is defunct since early 2006.[citation needed]
  • Additional commands: New commands can be such things as shorthand commands to issue commands to Services, to network operator only commands to manipulate a user's hostmask.[citation needed]
  • Encryption: For the client-to-server leg of the connection SSL might be used (messages cease to be secure once they are relayed to other users on standard connections, but it makes eavesdropping on or wiretapping an individual's IRC sessions difficult). For client-to-client communication, SDCC (Secure DCC) can be used.[citation needed]
  • Connection protocol: IRC can be connected to via IPv4, the current standard version of the Internet Protocol, or by IPv6, the next-generation version of the protocol.
  • Web-based account registrations and user profile pages: An example is IRCwx.

Character encoding

IRC still lacks a single globally accepted standard convention for how to transmit characters outside the 7-bit ASCII repertoire. IRC servers normally[clarification needed] transfer messages from a client to another client just as byte sequences, without any interpretation or recoding of characters. The IRC protocol (unlike e.g. MIME or HTTP) lacks mechanisms for announcing and negotiation character encoding options. This has put the responsibility for choosing the appropriate character codec on the client. In practice, IRC channels have largely used the same character encodings that were also used by operating systems (in particular Unix derivatives) in the respective language communities:

  • 7-bit era: In the early days of IRC, especially among Scandinavian and Finnish language users, national variants of ISO 646 were the dominant character encodings. These encode non-ASCII characters like Ä Ö Å ä ö å at code positions 0x5B 0x5C 0x5D 0x7B 0x7C 0x7D (US-ASCII: [ \ ] { | }). That is why these codes are always allowed in nicknames. According to RFC 1459, { | } in nicknames should be treated as lowercase equivalents of [ \ ] respectively.[19] By the late 1990s, the use of 7-bit encodings had disappeared in favour of ISO 8859-1, and such equivalence mappings were dropped from some IRC daemons.
  • 8-bit era: Since the early 1990s, 8-bit encodings such as ISO 8859-1 have become commonly used for European languages. Russian users had a choice of KOI8-R, ISO 8859-5[citation needed] and CP1251, and since about 2000, modern Russian IRC networks convert between these different commonly used encodings of the Cyrillic alphabet.
  • Multi-byte era: East Asian IRC channels with ideographic scripts in China, Japan, and Korea have used for a long time multi-byte encodings such as EUC or ISO-2022-JP. With the common migration from ISO 8859 to UTF-8 on Linux and Unix platforms since about 2002, UTF-8 has become an increasingly popular substitute for many of the previously used 8-bit encodings in European channels. Some IRC clients are now capable of reading messages both in ISO 8859-1 or UTF-8 in the same channel, heuristically autodetecting which encoding is used. The shift to UTF-8 began in particular on Finnish-speaking IRC (fi:IRC#Merkistö (Finnish)).

Today, the UTF-8 encoding of Unicode/ISO 10646 would be the most likely contender for a single future standard character encoding for all IRC communication, if such standard ever relaxed the 510 bytes message size restriction. UTF-8 is ASCII compatible and covers the superset of all other commonly used coded character set standards.

File sharing

Much like conventional P2P file sharing, users can create file servers that allow them to share files with each other by using customised IRC bots or scripts for their IRC client. Often users will group together to distribute warez via a network of IRC bots.[83]

Technically, IRC provides no file transfer mechanisms itself; file sharing is implemented by IRC clients, typically using the Direct Client-to-Client (DCC) protocol, in which file transfers are negotiated through the exchange of private messages between clients. The vast majority of IRC clients feature support for DCC file transfers, hence the view that file sharing is an integral feature of IRC.[84] The commonplace usage of this protocol, however, sometimes also causes DCC spam. DCC commands have also been used to exploit vulnerable clients into performing an action such as disconnecting from the server or exiting the client.

See also

References

  1. ^ a b c "Introduction". p. 4. sec. 1. RFC 1459. http://tools.ietf.org/html/rfc1459#section-1. 
  2. ^ "One-to-many". p. 11. sec. 3.2. RFC 1459. http://tools.ietf.org/html/rfc1459#section-3.2. 
  3. ^ "One-To-One Communication". p. 5. sec. 5.1. RFC 2810. http://tools.ietf.org/html/rfc2810#section-5.1. 
  4. ^ Rollo, Troy. "A description of the DCC protocol". irchelp.org. http://www.irchelp.org/irchelp/rfc/dccspec.html. Retrieved 2011-04-08. 
  5. ^ Wang, Wallace (2004-10-25). "Instant Messaging and Online Chat Rooms: Internet Relay Chat (IRC)". Steal this File Sharing Book (1st ed.). San Francisco, California: No Starch Press. pp. 61 – 67. ISBN 1-59327-050-X. 
  6. ^ "SAGE IRC Channel". Sage - The USENIX Special Interest Group for Sysadmins. http://www.sage.org/about/irc.html. Retrieved 18 April 2011. 
  7. ^ a b c "IRC Networks - Top 100". irc.netsplit.de. http://irc.netsplit.de/networks/top100.php. Retrieved 2011-04-08. 
  8. ^ "IRC Servers - Summary". irc.netsplit.de. http://irc.netsplit.de/servers/summary.php. Retrieved 2011-04-08. 
  9. ^ a b Oikarinen, Jarkko. "Founding IRC". http://www.mirc.com/jarkko.html. Retrieved 2011-04-08. 
  10. ^ "IRC transcripts from the time of the 1991 Soviet coup d'état attempt". Chapel Hill, North Carolina: ibiblio. http://www.ibiblio.org/pub/academic/communications/logs/report-ussr-gorbatchev. Retrieved 2011-04-08. 
  11. ^ "IRC logs of events of the Gulf War". Chapel Hill, North Carolina: ibiblio. http://www.ibiblio.org/pub/academic/communications/logs/Gulf-War/. Retrieved 2011-04-08. 
  12. ^ "Logs of major events in the online community". Chapel Hill, North Carolina: ibiblio. http://www.ibiblio.org/pub/academic/communications/logs/. Retrieved 2011-04-08. 
  13. ^ "Servers". p. 4. sec. 1.1. RFC 1459. http://tools.ietf.org/html/rfc1459#section-1.1. 
  14. ^ "Clients". p. 3. sec. 2.2. RFC 2810. http://tools.ietf.org/html/rfc2810#section-2.2. 
  15. ^ "Clients". p. 5. sec. 1.2. RFC 1459. http://tools.ietf.org/html/rfc1459#section-1.2. 
  16. ^ "Port Numbers". Marina del Rey, California: Internet Assigned Numbers Authority. 2011-04-06. http://www.iana.org/assignments/port-numbers. Retrieved 2011-04-08. 
  17. ^ "Connect message". p. 29. sec. 4.3.5. RFC 1459. http://tools.ietf.org/html/rfc1459#section-4.3.5. 
  18. ^ Lucas, Mark; Singh, Abhishek; Cantrell, Chris (2006-10-05). "Defining a Firewall". In Henmi, Anne. Firewall Policies and VPN Configurations. Rockland, Massachusetts: Syngress Publishing. p. 93. ISBN 1-59749-088-1. 
  19. ^ a b "Character codes". p. 7. sec. 2.2. RFC 1459. http://tools.ietf.org/html/rfc1459#section-2.2. 
  20. ^ Abraham, Dalen (June 1998). Extensions to the Internet Relay Chat Protocol (IRCX). IETF. I-D draft-pfenning-irc-extensions-04. http://tools.ietf.org/html/draft-pfenning-irc-extensions-04. Retrieved 2011-04-08. 
  21. ^ "IRCwx FAQs". net-bits.net. http://www.net-bits.net/ircwxfaqs.aspx. 
  22. ^ "Architecture". pp. 3 – 4. sec. 3. RFC 2810. http://tools.ietf.org/html/rfc2810#section-3. 
  23. ^ "Introduction". p. 2. sec. 1. RFC 2810. http://tools.ietf.org/html/rfc2810#section-1. 
  24. ^ "Algorithms". p. 64. sec. 9.3. RFC 1459. http://tools.ietf.org/html/rfc1459#section-9.3. 
  25. ^ "Network Congestion". pp. 7 – 8. sec. 6.3. RFC 2810. http://tools.ietf.org/html/rfc2810#section-6.3. 
  26. ^ "To A Channel". pp. 5 – 6. sec. 5.2.1. RFC 2810. http://tools.ietf.org/html/rfc2810#section-5.2.1. 
  27. ^ "Message format in 'pseudo' BNF". p. 8. sec. 2.3.1. RFC 1459. http://tools.ietf.org/html/rfc1459#section-2.3.1. 
  28. ^ "Numeric replies". p. 10. sec. 2.4. RFC 1459. http://tools.ietf.org/html/rfc1459#section-2.4. 
  29. ^ "IRC List Modes - List mode extension showing pair confusion for lists". 2009-11-25. http://www.shanemcc.co.uk/irc/#listmode. Retrieved 2011-04-08. 
  30. ^ a b "To a group (channel)". p. 11. sec. 3.2.2. RFC 1459. http://tools.ietf.org/html/rfc1459#section-3.2.2. 
  31. ^ "List message". p. 24. sec. 4.2.6. RFC 1459. http://tools.ietf.org/html/rfc1459#section-4.2.6. 
  32. ^ a b "Join message". p. 19. sec. 4.2.1. RFC 1459. http://tools.ietf.org/html/rfc1459#section-4.2.1. 
  33. ^ "Channel Scope". sec. 2.2. RFC 2811. http://tools.ietf.org/html/rfc2811#section-2.2. 
  34. ^ "Channel Properties". p. 4. sec. 2.3. RFC 2811. http://tools.ietf.org/html/rfc2811#section-2.3. 
  35. ^ "Channel lifetime". p. 5. sec. 3. RFC 2811. http://tools.ietf.org/html/rfc2811#section-3. 
  36. ^ "Channel Modes". p. 7. sec. 4. RFC 2811. http://tools.ietf.org/html/rfc2811#section-4. 
  37. ^ "Mode message". p. 21. sec. 4.2.3. RFC 1459. http://tools.ietf.org/html/rfc1459#section-4.2.3. 
  38. ^ "Channel modes". pp. 21 – 22. sec. 4.2.3.1. RFC 1459. http://tools.ietf.org/html/rfc1459#section-4.2.3.1. 
  39. ^ "Channel Access Control". pp. 10 – 11. sec. 4.3. RFC 2811. http://tools.ietf.org/html/rfc2811#section-4.3. 
  40. ^ a b "Command responses: 353 RPL_NAMREPLY". p. 51. RFC 1459. http://tools.ietf.org/html/rfc1459#page-51. 
  41. ^ Roeckx, Kurt (2004-10-14). "The 005 numeric: ISUPPORT". irc.org. http://www.irc.org/tech_docs/005.html. Retrieved 2011-04-10. 
  42. ^ Brocklesby, Edward (September 2002). IRC RPL_ISUPPORT Numeric Definition. IETF. I-D draft-brocklesby-irc-isupport-03. http://tools.ietf.org/html/draft-brocklesby-irc-isupport-03. Retrieved 2011-04-10. 
  43. ^ "Operwall message". p. 41. sec. 5.6. RFC 1459. http://tools.ietf.org/html/rfc1459#section-5.6. 
  44. ^ "Definition of wallops". Urban Dictionary. http://www.urbandictionary.com/define.php?term=wallops. Retrieved 2011-04-10. 
  45. ^ Butcher, Simon (2005-01-12). "IRC User Modes List". alien.net.au. http://www.alien.net.au/irc/usermodes.html. Retrieved 2011-04-10. 
  46. ^ Butcher, Simon (2005-01-12). "IRC Channel Modes List". alien.net.au. http://www.alien.net.au/irc/chanmodes.html. Retrieved 2011-04-10. 
  47. ^ Butcher, Simon (2005-01-12). "IRC Server Modes List". alien.net.au. http://www.alien.net.au/irc/servermodes.html. Retrieved 2011-04-10. 
  48. ^ Olsen, Tommy. "IRCd Modes". webtoman.com. http://webtoman.com/opera/panel/ircdmodes.html. Retrieved 2011-04-10. 
  49. ^ a b "Operators". p. 5. sec. 1.2.1. RFC 1459. http://tools.ietf.org/html/rfc1459#section-1.2.1. 
  50. ^ Thiedeke, Udo (2003-09-23). "Nicola Döring, Alexander Schestag" (in German). Virtuelle Gruppen: Charakteristika und Problemdimensionen (2nd ed.). VS Verlag für Sozialwissenschaften. pp. 314, 337. ISBN 3-531-33372-0. http://books.google.com/?id=aQ74THYRyYsC&lpg=PA314&pg=PA315#v=onepage&q=hostmask. Retrieved 2010-03-30. 
  51. ^ Rogers, Russ (2004-12-01). "The Mind of Terror". In Devost, Matthew G.. Hacking a Terror Network: The Silent Threat of Covert Channels (1st ed.). Rockland, Massachusetts: Syngress Publishing. p. 10. ISBN 1-928994-98-9. http://books.google.com/books?id=e3ggsGgTzUgC&lpg=PA10&pg=PA10#v=onepage&q=Hostmask%20IRC. Retrieved 2010-03-30. 
  52. ^ Petersen, Julie K., ed (2002-05-29). "Internet Relay Chat". The Telecommunications Illustrated Dictionary (2nd ed.). CRC Press. p. 500. ISBN 0-8493-1173-X. http://books.google.com/books?id=b2mMzS0hCkAC&lpg=PA500&pg=PA500#v=onepage&q=Hostmask. Retrieved 2010-03-30. 
  53. ^ "Frequently-Asked Questions". freenode. http://freenode.net/faq.shtml. Retrieved 2010-03-30. 
  54. ^ "Size". pp. 5 – 6. sec. 2.5.1. RFC 1324. http://tools.ietf.org/html/rfc1324#section-2.5.1. 
  55. ^ "Scalability". p. 7. sec. 6.1. RFC 2810. http://tools.ietf.org/html/rfc2810#section-6.1. 
  56. ^ Loesch 2003 1.2.1 Growth
  57. ^ "User identification". p. 10. sec. 5.4.1. RFC 1324. http://tools.ietf.org/html/rfc1324#section-5.4.1. 
  58. ^ "Trees and cycles". p. 10. sec. 5.4.2. RFC 1324. http://tools.ietf.org/html/rfc1324#section-5.4.2. 
  59. ^ Loesch 2003 1.2.2 Network failures
  60. ^ "State Information problems". p. 4. sec. 2.1. RFC 1324. http://tools.ietf.org/html/rfc1324#section-2.1. 
  61. ^ Loesch 2003 1.2.3 Sociological and security aspects
  62. ^ "Message passing". p. 7. sec. 5.2.1. RFC 1324. http://tools.ietf.org/html/rfc1324#section-5.2.1. 
  63. ^ "Conference security". p. 8. sec. 5.2.4. RFC 1324. http://tools.ietf.org/html/rfc1324#section-5.2.4. 
  64. ^ a b Charalabidis, Alex (1999-12-15). "IRCing On The Macintosh: Ircle". The Book of IRC: The Ultimate Guide to Internet Relay Chat (1st ed.). San Francisco, California: No Starch Press. p. 61. ISBN 1-886411-29-8. "On large networks such as the Big Four — EFnet, IRCnet, Undernet, and DALnet — trying to list the thousands of channels with Ircle always causes you to disconnect due to the flood of information, while other clients can usually manage the feat, if you are on a direct Ethernet connection." 
  65. ^ a b Jones, Steve, ed (2002-12-10). "Internet Relay Chat". Encyclopedia of New Media: An Essential Reference to Communication and Technology (1st ed.). Thousand Oaks, California: SAGE Publications. p. 257. ISBN 0-7619-2382-9. "Today there are hundreds of independent IRC networks, but the "Big Four" are EFNet, UnderNet, Dalnet, and IRCnet." 
  66. ^ a b Rittner, Don (1999-03-03). The iMac Book (1st ed.). Scottsdale, Arizona: Coriolis Group. p. 215. ISBN 1-576-10429-X. "There are several large networks: EFnet, UnderNET, DALnet, and IRCnet make up the Big Four." 
  67. ^ a b Turban, Efraim; Leidner, Dorothy; McLean, Ephraim; Wetherbe, James (2005-02-07). "Communication". Information Technology for Management: Transforming Organizations in the Digital Economy (5th ed.). Hoboken, New Jersey: John Wiley & Sons. pp. 106 – 107. ISBN 0-471-70522-5. "The largest networks have traditionally been grouped as the "Big Four": EFNet, IrcNet, QuakeNet, and UnderNet." 
  68. ^ Butcher, Simon (January 2003). Uniform Resource Locator Schemes for Internet Relay Chat Entities. IETF. I-D draft-butcher-irc-url-04. http://tools.ietf.org/html/draft-butcher-irc-url-04. Retrieved 2011-04-10. 
  69. ^ Smith, Roderick W. (2000-04-08). "The Internet: Using IRC to Get Help". The Multi-Boot Configuration Handbook. Handbook Series. Upper Saddle River, New Jersey: Que Publishing. p. 289. ISBN 0-7897-2283-6. http://books.google.com/books?id=OuPtI5fHhBoC. Retrieved 2010-07-25. "mIRC is one of the most popular Windows IRC clients." 
  70. ^ "Opera Browser Wiki: IRC Client". http://operawiki.info/OperaIRC. Retrieved 2011-04-10. 
  71. ^ "Warsow Wiki: IRC Module". http://www.warsow.net/wiki/index.php?title=IRC_Module. Retrieved 2011-04-10. 
  72. ^ Guenter, Daniel (2004-06-21). "UT2004 Review". BCCHardware. http://www.bcchardware.com/index.php?option=com_content&task=view&id=35&Itemid=40. Retrieved 2011-04-10. 
  73. ^ "The Ultimate Uplink Guide". http://guide.modlink.net/section11.php. Retrieved 2011-04-10. 
  74. ^ "ZDaemon - The Doom Wiki: Other utilities". http://doom.wikia.com/wiki/ZDaemon#Other_utilities. Retrieved 2011-04-10. 
  75. ^ "mIRC and ustream.tv". Ustream.tv. 2008-09-07. http://www.ustream.tv/forum/showthread.php?370-mIRC-and-ustream.tv&p=1516. Retrieved 2011-04-10. 
  76. ^ Mauldor (2010-06-20). "Ustream vs. Justin.tv". LiquidSilver. http://www.liquidsilver.org/2010/06/ustream-v-justin/. Retrieved 2011-07-13. 
  77. ^ "psyBNC Readme". psybnc.at. http://www.psybnc.at/readme.txt. Retrieved 2011-04-10. 
  78. ^ Carey, Chris (2009-07-18). "IRC with irssi-proxy + screen". chriscarey.com. http://chriscarey.com/wordpress/2009/07/18/irc-with-irssi-proxy-screen/. Retrieved 2011-04-10. 
  79. ^ "Detachable Frontend (Core Rewrite) / UML / Windows Port (kicking Glade)". smuxi.org. 2004-12-25. http://www.smuxi.org/blog/show/Detachable_Frontend_Core_Rewrite__UML__Windows_Port_kicking_Glade. Retrieved 2010-07-25. 
  80. ^ "About Smuxi". smuxi.org. http://www.smuxi.org/page/About. Retrieved 2011-04-10. 
  81. ^ Mutton, Paul (2004-07-27). "Users and Channels". IRC Hacks (1st ed.). Sebastopol, California: O'Reilly Media. pp. 44 – 46. ISBN 0-596-00687-X. 
  82. ^ Wang, Wallace (2004-10-25). "Instant Messaging and Online Chat Rooms: Internet Relay Chat (IRC)". Steal this File Sharing Book (1st ed.). San Francisco, California: No Starch Press. pp. 65 – 67. ISBN 1-59327-050-X. 
  83. ^ Vamosi, Robert (2002-05-08). "Pirated movies: Now playing on a server near you". ZDNet. http://www.zdnet.com/news/pirated-movies-now-playing-on-a-server-near-you/122663. Retrieved 2011-04-10. 
  84. ^ Sasaki, Darla (2002-04-04). "IRC 101: What Is It & How Do I Use It?". The Mac Observer. http://www.macobserver.com/tip/2002/04/04.1.shtml. Retrieved 2011-04-10. 

Bibliography

Further reading

External links


Wikimedia Foundation. 2010.

Игры ⚽ Поможем решить контрольную работу

Look at other dictionaries:

  • Internet relay chat — « IRC » redirige ici. Pour les autres significations, voir IRC (homonymie). Pile de protocoles …   Wikipédia en Français

  • Internet Relay Chat — UK US noun [uncountable] computing a method of communicating with other people immediately over the Internet, especially through discussion groups Thesaurus: internethyponym …   Useful english dictionary

  • Internet Relay Chat —   [engl.], IRC …   Universal-Lexikon

  • Internet Relay Chat — « IRC » redirige ici. Pour les autres significations, voir IRC (homonymie).  Ne doit pas être confondu avec mIRC …   Wikipédia en Français

  • Internet relay chat — Schema eines IRC Netzwerks mit Clients (eckig), darunter normale Benutzer (grün), Bouncer (orange), Bots (bläulich) und IRC Services Internet Relay Chat, kurz IRC, bezeichnet ein etabliertes, rein textbasiertes Chat System. Es ermöglicht… …   Deutsch Wikipedia

  • Internet Relay Chat — «IRC» redirige aquí. Para otras acepciones, véase IRC (desambiguación). Internet Relay Chat (IRC) Familia: Familia de protocolos de Internet Función: Conversación en tiempo real Última versión: 2.10 Puertos: 6667/TCP …   Wikipedia Español

  • Internet Relay Chat — Schema eines IRC Netzwerks mit Clients (eckig), darunter normale Benutzer (grün), Bouncer (orange), Bots (bläulich) und IRC Services Internet Relay Chat, kurz IRC, bezeichnet ein rein textbasiertes Chat System. Es ermöglicht Gesprächsrunden mit… …   Deutsch Wikipedia

  • Internet\ Relay\ Chat — Mittels Internet Relay Chat (IRC) können Online Gespräche in virtuellen Räumen im Internet in Echtzeit geführt werden. Internet, Chat, Instant Messaging, ICQ …   Online-Wörterbuch Deutsch-Lexikon

  • internet relay chat — tikralaikis pokalbis statusas T sritis informatika apibrėžtis Keitimasis ↑tekstinėmis žinutėmis kai žinutės gavėjas kompiuterio ekrane iš karto mato jam išsiųstą žinutę ir visas pokalbis matomas ↑pokalbių programos lange. Plačiau žr. priede.… …   Enciklopedinis kompiuterijos žodynas

  • internet relay chat — pokalbis internetu statusas T sritis informatika apibrėžtis Dviejų arba daugiau asmenų ↑tikralaikė bendravimo forma, kai pasikeičiama rašytine informacija, visų pokalbio dalyvių matoma kompiuterio ekrane. „Kalbama“ renkant tekstą, kuris… …   Enciklopedinis kompiuterijos žodynas

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”