diff options
author | Wim <wim@42.be> | 2017-01-24 21:24:57 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2017-01-24 21:24:57 +0100 |
commit | 09b243d8c2b4276de268777d973ca618267db92c (patch) | |
tree | 917fbd8ff4e85faedb5d9052fa8e8fadecddd858 /vendor/github.com/thoj/go-ircevent/irc_struct.go | |
parent | 991183e5147f2d9078e8e88979ced1356d9d1796 (diff) | |
download | matterbridge-msglm-09b243d8c2b4276de268777d973ca618267db92c.tar.gz matterbridge-msglm-09b243d8c2b4276de268777d973ca618267db92c.tar.bz2 matterbridge-msglm-09b243d8c2b4276de268777d973ca618267db92c.zip |
Update vendor (irc)
Diffstat (limited to 'vendor/github.com/thoj/go-ircevent/irc_struct.go')
-rw-r--r-- | vendor/github.com/thoj/go-ircevent/irc_struct.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vendor/github.com/thoj/go-ircevent/irc_struct.go b/vendor/github.com/thoj/go-ircevent/irc_struct.go index 33db846e..a188d9d9 100644 --- a/vendor/github.com/thoj/go-ircevent/irc_struct.go +++ b/vendor/github.com/thoj/go-ircevent/irc_struct.go @@ -13,6 +13,7 @@ import ( ) type Connection struct { + sync.Mutex sync.WaitGroup Debug bool Error chan error @@ -46,7 +47,7 @@ type Connection struct { Log *log.Logger stopped bool - quit bool + quit bool //User called Quit, do not reconnect. } // A struct to represent an event. |