diff options
author | Bert Mertens <bertmertens@gmail.com> | 2016-01-27 20:09:06 +0100 |
---|---|---|
committer | Bert Mertens <bertmertens@gmail.com> | 2016-01-27 20:09:06 +0100 |
commit | fd74dca175d0abf2dec28f7c996b6789fec9c6b7 (patch) | |
tree | 86c2b3753101f21f5777f408829037acbd5bb365 /config.go | |
parent | c7ace91bf68fc84d7d9d03f0d5a89666d00dd6eb (diff) | |
download | matterbridge-msglm-fd74dca175d0abf2dec28f7c996b6789fec9c6b7.tar.gz matterbridge-msglm-fd74dca175d0abf2dec28f7c996b6789fec9c6b7.tar.bz2 matterbridge-msglm-fd74dca175d0abf2dec28f7c996b6789fec9c6b7.zip |
Add PASS support as per RFC1459
Provide a connection password via the protocol's PASS command.
Imported irc.go supports it as a simple parameter:
https://github.com/thoj/go-ircevent/blob/master/irc.go#L381
See https://tools.ietf.org/html/rfc1459#section-4.1 for full details.
Diffstat (limited to 'config.go')
-rw-r--r-- | config.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -13,6 +13,7 @@ type Config struct { Server string Port int Nick string + Password string Channel string } Mattermost struct { |