Programming a simple IRC (Internet-Relay-Chat) Client. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T22:44:57Z http://stackoverflow.com/feeds/question/24310 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/24310/programming-a-simple-irc-internet-relay-chat-client 3 Programming a simple IRC (Internet-Relay-Chat) Client. CodingWithoutComments 2008-08-23T15:49:06Z 2009-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#24311 8 Answer by FlySwat for Programming a simple IRC (Internet-Relay-Chat) Client. FlySwat 2008-08-23T15:49:53Z 2008-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#24322 3 Answer by FlySwat for Programming a simple IRC (Internet-Relay-Chat) Client. FlySwat 2008-08-23T15:59:07Z 2008-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#24521 2 Answer by abyx for Programming a simple IRC (Internet-Relay-Chat) Client. abyx 2008-08-23T19:24:06Z 2008-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#526926 0 Answer by hernan43 for Programming a simple IRC (Internet-Relay-Chat) Client. hernan43 2009-02-09T01:56:37Z 2009-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#844821 4 Answer by Hinrik for Programming a simple IRC (Internet-Relay-Chat) Client. Hinrik 2009-05-10T06:22:26Z 2009-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>