23 lines
649 B
Go
23 lines
649 B
Go
package xmpp
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"io"
|
|
"os"
|
|
)
|
|
|
|
type Config struct {
|
|
Address string
|
|
Jid string
|
|
parsedJid *Jid // For easier manipulation
|
|
Password string
|
|
StreamLogger *os.File // Used for debugging
|
|
Lang string // TODO: should default to 'en'
|
|
ConnectTimeout int // Client timeout in seconds. Default to 15
|
|
TLSConfig tls.Config
|
|
// 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
|
|
}
|