diff options
author | Wim <wim@42.be> | 2017-12-19 23:15:03 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2017-12-19 23:15:03 +0100 |
commit | 265457b45171dcae96a1aac9454e3bda2cd0557a (patch) | |
tree | 35342a6b83e01b708b20442378799c7692fdf519 /bridge/xmpp | |
parent | 4a4a29c9f6fe202cf4379c0df2ba313848bb8d11 (diff) | |
download | matterbridge-msglm-265457b45171dcae96a1aac9454e3bda2cd0557a.tar.gz matterbridge-msglm-265457b45171dcae96a1aac9454e3bda2cd0557a.tar.bz2 matterbridge-msglm-265457b45171dcae96a1aac9454e3bda2cd0557a.zip |
Refactor and add MediaDownloadSize to General
Diffstat (limited to 'bridge/xmpp')
-rw-r--r-- | bridge/xmpp/xmpp.go | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/bridge/xmpp/xmpp.go b/bridge/xmpp/xmpp.go index b5429b1f..9cb6f6ad 100644 --- a/bridge/xmpp/xmpp.go +++ b/bridge/xmpp/xmpp.go @@ -14,9 +14,7 @@ import ( type Bxmpp struct { xc *xmpp.Client xmppMap map[string]string - Config *config.Protocol - Remote chan config.Message - Account string + *config.BridgeConfig } var flog *log.Entry @@ -26,12 +24,9 @@ func init() { flog = log.WithFields(log.Fields{"module": protocol}) } -func New(cfg config.Protocol, account string, c chan config.Message) *Bxmpp { - b := &Bxmpp{} +func New(cfg *config.BridgeConfig) *Bxmpp { + b := &Bxmpp{BridgeConfig: cfg} b.xmppMap = make(map[string]string) - b.Config = &cfg - b.Account = account - b.Remote = c return b } |