go-xmpp/config.go

22 lines
651 B
Go
Raw Normal View History

package xmpp
2018-10-13 05:45:48 -07:00
import (
"os"
)
2019-11-04 03:58:10 -08:00
// Config & TransportConfiguration must not be modified after having been passed to NewClient. Any
// changes made after connecting are ignored.
2018-09-26 07:27:37 -07:00
type Config struct {
TransportConfiguration
2016-02-17 04:45:39 -08:00
Jid string
parsedJid *Jid // For easier manipulation
Credential Credential
StreamLogger *os.File // Used for debugging
2019-05-31 10:22:36 -07:00
Lang string // TODO: should default to 'en'
ConnectTimeout int // Client timeout in seconds. Default to 15
2019-05-31 10:22:36 -07:00
// Insecure can be set to true to allow to open a session without TLS. If TLS
// is supported on the server, we will still try to use it.
Insecure bool
}