commit
5063e5f260
5
irc.go
5
irc.go
@ -473,6 +473,11 @@ func (irc *Connection) Connect(server string) error {
|
|||||||
go irc.readLoop()
|
go irc.readLoop()
|
||||||
go irc.writeLoop()
|
go irc.writeLoop()
|
||||||
go irc.pingLoop()
|
go irc.pingLoop()
|
||||||
|
|
||||||
|
if len(irc.WebIRC) > 0 {
|
||||||
|
irc.pwrite <- fmt.Sprintf("WEBIRC %s\r\n", irc.WebIRC)
|
||||||
|
}
|
||||||
|
|
||||||
if len(irc.Password) > 0 {
|
if len(irc.Password) > 0 {
|
||||||
irc.pwrite <- fmt.Sprintf("PASS %s\r\n", irc.Password)
|
irc.pwrite <- fmt.Sprintf("PASS %s\r\n", irc.Password)
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,7 @@ type Connection struct {
|
|||||||
sync.WaitGroup
|
sync.WaitGroup
|
||||||
Debug bool
|
Debug bool
|
||||||
Error chan error
|
Error chan error
|
||||||
|
WebIRC string
|
||||||
Password string
|
Password string
|
||||||
UseTLS bool
|
UseTLS bool
|
||||||
UseSASL bool
|
UseSASL bool
|
||||||
|
Loading…
Reference in New Issue
Block a user