From 5baf7671c652fe8335a3eaf57a23faf21fe8c2f9 Mon Sep 17 00:00:00 2001 From: tpltnt Date: Fri, 14 Feb 2014 15:03:52 +0100 Subject: [PATCH] IRC RFCs added --- irc.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/irc.go b/irc.go index 6c99925..5e8455d 100644 --- a/irc.go +++ b/irc.go @@ -7,6 +7,12 @@ This package provides an event based IRC client library. It allows to register callbacks for the events you need to handle. Its features include handling standard CTCP, reconnecting on errors and detecting stones servers. +Details of the IRC protocol can be found in the following RFCs: +https://tools.ietf.org/html/rfc1459 +https://tools.ietf.org/html/rfc2810 +https://tools.ietf.org/html/rfc2811 +https://tools.ietf.org/html/rfc2812 +https://tools.ietf.org/html/rfc2813 */ package irc