2019-06-18 14:28:30 +00:00
|
|
|
package xmpp
|
2016-01-06 15:51:12 +00:00
|
|
|
|
2018-10-13 12:45:48 +00:00
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
)
|
2016-01-06 15:51:12 +00:00
|
|
|
|
2019-11-04 11:58:10 +00:00
|
|
|
// Config & TransportConfiguration must not be modified after having been passed to NewClient. Any
|
|
|
|
// changes made after connecting are ignored.
|
2018-09-26 14:27:37 +00:00
|
|
|
type Config struct {
|
2019-10-11 04:24:27 +00:00
|
|
|
TransportConfiguration
|
|
|
|
|
2016-02-17 12:45:39 +00:00
|
|
|
Jid string
|
|
|
|
parsedJid *Jid // For easier manipulation
|
2019-10-01 08:59:55 +00:00
|
|
|
Credential Credential
|
2019-06-29 08:45:25 +00:00
|
|
|
StreamLogger *os.File // Used for debugging
|
2019-05-31 17:22:36 +00:00
|
|
|
Lang string // TODO: should default to 'en'
|
2019-06-08 16:52:19 +00:00
|
|
|
ConnectTimeout int // Client timeout in seconds. Default to 15
|
2019-05-31 17:22:36 +00: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.
|
2019-10-18 18:29:54 +00:00
|
|
|
Insecure bool
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|