diff options
author | Wim <wim@42.be> | 2016-07-21 23:47:44 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2016-07-21 23:47:44 +0200 |
commit | 79ffb76f6e87fde36bee3e4bd43d7d5145ba3c67 (patch) | |
tree | bc5f5c332b82fbea4fa5c7f6f5ca1e3658054ebb /vendor/github.com/thoj/go-ircevent/irc_struct.go | |
parent | 5fe4b749cfb56ca5f499abaaba76e0292e1d04fa (diff) | |
download | matterbridge-msglm-79ffb76f6e87fde36bee3e4bd43d7d5145ba3c67.tar.gz matterbridge-msglm-79ffb76f6e87fde36bee3e4bd43d7d5145ba3c67.tar.bz2 matterbridge-msglm-79ffb76f6e87fde36bee3e4bd43d7d5145ba3c67.zip |
Add (PLAIN) SASL support
Diffstat (limited to 'vendor/github.com/thoj/go-ircevent/irc_struct.go')
-rw-r--r-- | vendor/github.com/thoj/go-ircevent/irc_struct.go | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/vendor/github.com/thoj/go-ircevent/irc_struct.go b/vendor/github.com/thoj/go-ircevent/irc_struct.go index 3e4a438f..33db846e 100644 --- a/vendor/github.com/thoj/go-ircevent/irc_struct.go +++ b/vendor/github.com/thoj/go-ircevent/irc_struct.go @@ -14,16 +14,20 @@ import ( type Connection struct { sync.WaitGroup - Debug bool - Error chan error - Password string - UseTLS bool - TLSConfig *tls.Config - Version string - Timeout time.Duration - PingFreq time.Duration - KeepAlive time.Duration - Server string + Debug bool + Error chan error + Password string + UseTLS bool + UseSASL bool + SASLLogin string + SASLPassword string + SASLMech string + TLSConfig *tls.Config + Version string + Timeout time.Duration + PingFreq time.Duration + KeepAlive time.Duration + Server string socket net.Conn pwrite chan string |