2018-12-26 17:50:01 +00:00
|
|
|
package xmpp // import "gosrc.io/xmpp"
|
2016-01-06 15:51:12 +00:00
|
|
|
|
2018-10-13 12:45:48 +00:00
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
)
|
2016-01-06 15:51:12 +00:00
|
|
|
|
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
|
2019-05-31 17:11:15 +00:00
|
|
|
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
|
2018-10-13 12:45:48 +00:00
|
|
|
CharsetReader func(charset string, input io.Reader) (io.Reader, error) // passed to xml decoder
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|