2018-01-01 17:12:33 +00:00
|
|
|
package xmpp // import "fluux.io/xmpp"
|
2016-01-06 15:51:12 +00:00
|
|
|
|
|
|
|
import "os"
|
|
|
|
|
2018-09-26 14:27:37 +00:00
|
|
|
type Config struct {
|
2016-02-17 12:45:39 +00:00
|
|
|
Address string
|
|
|
|
Jid string
|
|
|
|
parsedJid *Jid // For easier manipulation
|
|
|
|
Password string
|
|
|
|
PacketLogger *os.File // Used for debugging
|
|
|
|
Lang string // TODO: should default to 'en'
|
|
|
|
Retry int // Number of retries for connect
|
|
|
|
ConnectTimeout int // Connection timeout in seconds. Default to 15
|
2017-10-21 12:49:25 +00:00
|
|
|
Insecure bool // set to true to allow comms without TLS
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|