Added Connected method
This commit is contained in:
parent
18b9dfbf29
commit
533177a490
5
irc.go
5
irc.go
@ -294,6 +294,11 @@ func (irc *Connection) ErrorChan() chan 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),
|
||||
// stops all goroutines and then closes the socket.
|
||||
func (irc *Connection) Disconnect() {
|
||||
|
Loading…
Reference in New Issue
Block a user