Rename options -> config

This commit is contained in:
Mickael Remond
2018-09-26 16:27:37 +02:00
parent fa5590e921
commit f70e2ca9a7

15
config.go Normal file
View File

@@ -0,0 +1,15 @@
package xmpp // import "fluux.io/xmpp"
import "os"
type Config struct {
Address string
Jid string
parsedJid *Jid // For easier manipulation
Password string
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
}