go-xmpp/options.go
2018-01-01 18:12:33 +01:00

16 lines
496 B
Go

package xmpp // import "fluux.io/xmpp"
import "os"
type Options struct {
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
Insecure bool // set to true to allow comms without TLS
}