Clarify use of insecure flag

disco_info_form
Mickael Remond 5 years ago
parent 996feb1a40
commit e54260ec68
No known key found for this signature in database
GPG Key ID: E6F6045D79965AA3

@ -10,10 +10,12 @@ type Config struct {
Jid string Jid string
parsedJid *Jid // For easier manipulation parsedJid *Jid // For easier manipulation
Password string Password string
PacketLogger *os.File // Used for debugging PacketLogger *os.File // Used for debugging
Lang string // TODO: should default to 'en' Lang string // TODO: should default to 'en'
Retry int // Number of retries for connect Retry int // Number of retries for connect
ConnectTimeout int // Connection timeout in seconds. Default to 15 ConnectTimeout int // Connection timeout in seconds. Default to 15
Insecure bool // set to true to allow comms without TLS // Insecure can be set to true to allow to open a session without TLS. If TLS
CharsetReader func(charset string, input io.Reader) (io.Reader, error) // passed to xml decoder // 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
} }

Loading…
Cancel
Save