Programming a simple IRC (Internet-Relay-Chat) Client. - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T22:44:57Zhttp://stackoverflow.com/feeds/question/24310http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/24310/programming-a-simple-irc-internet-relay-chat-client3Programming a simple IRC (Internet-Relay-Chat) Client.CodingWithoutComments2008-08-23T15:49:06Z2009-06-30T12:49:48Z
<p>I started using IRC at a young age, and I have always been fascinated with it. As a language exercise, I was thinking about programming a simple IRC client in Ruby with <a href="http://www.shoooes.net/" rel="nofollow">Shoes</a> as a graphical front-end. My question to you, kind-sirs, what do I need to become familiar with to start on this great adventure (besides shoes and Ruby of course)? I imagine there is some-sort of specification on IRC Protocol. Any pointers?</p>
http://stackoverflow.com/questions/24310/programming-a-simple-irc-internet-relay-chat-client/24311#243118Answer by FlySwat for Programming a simple IRC (Internet-Relay-Chat) Client.FlySwat2008-08-23T15:49:53Z2008-08-23T15:49:53Z<p>The IRC Specification is laid out in RFC 1459</p>
<p><a href="http://www.irchelp.org/irchelp/rfc/rfc.html" rel="nofollow">http://www.irchelp.org/irchelp/rfc/rfc.html</a></p>
http://stackoverflow.com/questions/24310/programming-a-simple-irc-internet-relay-chat-client/24322#243223Answer by FlySwat for Programming a simple IRC (Internet-Relay-Chat) Client.FlySwat2008-08-23T15:59:07Z2008-08-23T15:59:07Z<blockquote>
<p>I found this gem on Wikipedia. Sounds intimidating.</p>
</blockquote>
<p>It's actually not.</p>
<p>Telnet onto an IRC Server and witness the simplicity of the protocol first hand. The hardest part is the handshake, after that its very simple.</p>
http://stackoverflow.com/questions/24310/programming-a-simple-irc-internet-relay-chat-client/24521#245212Answer by abyx for Programming a simple IRC (Internet-Relay-Chat) Client.abyx2008-08-23T19:24:06Z2008-08-23T19:24:06Z<p>I once implemented a client and a server with 2 more guys (as part of a course).<br />
I can tell you that the RFC you were already linked to is great.<br />
I'd also try simply sniffing a connection with an existing client to see for yourself how stuff work.</p>
http://stackoverflow.com/questions/24310/programming-a-simple-irc-internet-relay-chat-client/526926#5269260Answer by hernan43 for Programming a simple IRC (Internet-Relay-Chat) Client.hernan432009-02-09T01:56:37Z2009-02-09T01:56:37Z<p>Not exactly an answer to your question, but it may be helpful. If you are using Ruby, I have found the Autumn Leaves project to be a great way to build an IRC bot using Ruby:</p>
<p><a href="http://github.com/RISCfuture/autumn/tree/master" rel="nofollow">http://github.com/RISCfuture/autumn/tree/master</a></p>
<p>It is pretty much the Jibble of the Ruby world.</p>
http://stackoverflow.com/questions/24310/programming-a-simple-irc-internet-relay-chat-client/844821#8448214Answer by Hinrik for Programming a simple IRC (Internet-Relay-Chat) Client.Hinrik2009-05-10T06:22:26Z2009-06-30T12:49:48Z<p>An earlier post mentioned RFC1459. While it is a very good introduction to IRC, it has actually been superseded by RFCs 2810-2813. Here is a more complete list of documentation you need to program anything IRC-related:</p>
<ul>
<li><a href="http://tools.ietf.org/html/rfc1459" rel="nofollow">RFC1459</a> (original RFC; superseded, but still useful)</li>
<li><a href="http://tools.ietf.org/html/rfc2810" rel="nofollow">RFC2810</a> (IRC architecture)</li>
<li><a href="http://tools.ietf.org/html/rfc2811" rel="nofollow">RFC2811</a> (IRC channel management)</li>
<li><a href="http://tools.ietf.org/html/rfc2812" rel="nofollow">RFC2812</a> (IRC client protocol)</li>
<li><a href="http://tools.ietf.org/html/rfc2813" rel="nofollow">RFC2813</a> (IRC server protocol)</li>
<li><a href="http://www.irchelp.org/irchelp/rfc/ctcpspec.html" rel="nofollow">CTCP specification</a></li>
<li><a href="http://www.irchelp.org/irchelp/rfc/dccspec.html" rel="nofollow">DCC specification</a></li>
<li><a href="http://www.invlogic.com/irc/ctcp.html" rel="nofollow">Updated CTCP specification</a> (not all clients support this)</li>
<li><a href="http://www.irc.org/tech%5Fdocs/draft-brocklesby-irc-isupport-03.txt" rel="nofollow">ISupport (response code 005) draft</a> (almost all servers support this nowadays)</li>
</ul>