irc-go/src/irc_struct.go

48 lines
1.0 KiB
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
import (
"net"
"time"
2012-03-22 03:50:21 +00:00
"tls"
)
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 time.Time
ticker <-chan time.Time
ticker2 <-chan time.Time
VerboseCallbackHandler bool
quitting bool
2012-03-18 22:08:05 +00:00
SSLConfig *tls.Config
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
}