commit
9c4d007b9f
5
irc.go
5
irc.go
@ -294,6 +294,11 @@ func (irc *Connection) ErrorChan() chan error {
|
|||||||
return irc.Error
|
return irc.Error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Returns true if the connection is connected to an IRC server.
|
||||||
|
func (irc *Connection) Connected() bool {
|
||||||
|
return !irc.stopped
|
||||||
|
}
|
||||||
|
|
||||||
// A disconnect sends all buffered messages (if possible),
|
// A disconnect sends all buffered messages (if possible),
|
||||||
// stops all goroutines and then closes the socket.
|
// stops all goroutines and then closes the socket.
|
||||||
func (irc *Connection) Disconnect() {
|
func (irc *Connection) Disconnect() {
|
||||||
|
Loading…
Reference in New Issue
Block a user