irc-go/irc_struct.go

42 lines
989 B
Go
Raw Normal View History

2009-11-18 15:03:14 +00:00
// Copyright 2009 Thomas Jager <mail@jager.no> All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2009-11-18 00:28:12 +00:00
package irc
2011-11-07 00:26:12 +00:00
import "net"
2009-11-18 00:28:12 +00:00
type IRCConnection struct {
socket net.Conn
pread, pwrite chan string
2011-11-07 00:26:12 +00:00
Error chan error
syncreader, syncwriter chan bool
2011-02-03 00:16:13 +00:00
nick string //The nickname we want.
nickcurrent string //The nickname we currently have.
user string
registered bool
server string
Password string
events map[string][]func(*IRCEvent)
2010-09-29 06:58:32 +00:00
lastMessage int64
ticker <-chan int64
ticker2 <-chan int64
VerboseCallbackHandler bool
quitting bool
2009-11-18 00:28:12 +00:00
}
type IRCEvent struct {
Code string
Message string
Raw string
Nick string //<nick>
Host string //<nick>!<usr>@<host>
Source string //<host>
User string //<usr>
Arguments []string
2009-11-18 00:28:12 +00:00
}