Add support for server PASSWORD

This commit is contained in:
tj
2010-09-29 08:58:32 +02:00
parent bcec3b6f11
commit 998e1c3050
2 changed files with 11 additions and 6 deletions

View File

@@ -17,12 +17,13 @@ type IRCConnection struct {
user string
registered bool
server string
password string
events map[string][]func(*IRCEvent)
lastMessage int64;
ticker <-chan int64;
ticker2 <-chan int64;
lastMessage int64
ticker <-chan int64
ticker2 <-chan int64
}
type IRCEvent struct {