go-xmpp/config.go

21 lines
634 B
Go
Raw Normal View History

package xmpp // import "gosrc.io/xmpp"
2018-10-13 12:45:48 +00:00
import (
"io"
"os"
)
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:22:36 +00:00
PacketLogger *os.File // Used for debugging
Lang string // TODO: should default to 'en'
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.
Insecure bool
CharsetReader func(charset string, input io.Reader) (io.Reader, error) // passed to xml decoder
}