mirror of https://github.com/fluffle/goirc
Bring in Ray Lu's Debug patches.
This commit is contained in:
parent
9b9197f5f6
commit
34b3299d41
|
@ -17,6 +17,7 @@ type Conn struct {
|
|||
// Connection Hostname and Nickname
|
||||
Host string
|
||||
Me *Nick
|
||||
Network string
|
||||
|
||||
// I/O stuff to server
|
||||
sock net.Conn
|
||||
|
@ -34,6 +35,8 @@ type Conn struct {
|
|||
// Set this to true to disable flood protection and false to re-enable
|
||||
Flood bool
|
||||
|
||||
Debug bool
|
||||
|
||||
// Event handler mapping
|
||||
events map[string][]func(*Conn, *Line)
|
||||
|
||||
|
@ -163,8 +166,10 @@ func (conn *Conn) send() {
|
|||
break
|
||||
}
|
||||
conn.io.Flush()
|
||||
if conn.Debug {
|
||||
fmt.Println("-> " + line)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// receive one \r\n terminated line from peer, parse and dispatch it
|
||||
|
@ -177,7 +182,9 @@ func (conn *Conn) recv() {
|
|||
break
|
||||
}
|
||||
s = strings.Trim(s, "\r\n")
|
||||
if conn.Debug {
|
||||
fmt.Println("<- " + s)
|
||||
}
|
||||
|
||||
line := &Line{Raw: s}
|
||||
if s[0] == ':' {
|
||||
|
|
Loading…
Reference in New Issue