2018-12-26 09:50:01 -08:00
|
|
|
package xmpp // import "gosrc.io/xmpp"
|
2016-01-06 07:51:12 -08:00
|
|
|
|
|
|
|
import "os"
|
|
|
|
|
2018-09-26 07:27:37 -07:00
|
|
|
type Config struct {
|
2016-02-17 04:45:39 -08: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 05:49:25 -07:00
|
|
|
Insecure bool // set to true to allow comms without TLS
|
2016-01-06 07:51:12 -08:00
|
|
|
}
|