2019-06-18 14:28:30 +00:00
|
|
|
package xmpp
|
2016-01-06 15:51:12 +00:00
|
|
|
|
2018-10-13 12:45:48 +00:00
|
|
|
import (
|
2020-01-09 14:33:11 +00:00
|
|
|
"gosrc.io/xmpp/stanza"
|
2018-10-13 12:45:48 +00:00
|
|
|
"os"
|
2019-12-04 21:17:58 +00:00
|
|
|
"time"
|
2018-10-13 12:45:48 +00:00
|
|
|
)
|
2016-01-06 15:51:12 +00:00
|
|
|
|
2019-11-04 11:58:10 +00:00
|
|
|
// Config & TransportConfiguration must not be modified after having been passed to NewClient. Any
|
|
|
|
// changes made after connecting are ignored.
|
2018-09-26 14:27:37 +00:00
|
|
|
type Config struct {
|
2019-10-11 04:24:27 +00:00
|
|
|
TransportConfiguration
|
|
|
|
|
2019-12-04 21:17:58 +00:00
|
|
|
Jid string
|
2020-01-09 14:33:11 +00:00
|
|
|
parsedJid *stanza.Jid // For easier manipulation
|
2019-12-04 21:17:58 +00:00
|
|
|
Credential Credential
|
|
|
|
StreamLogger *os.File // Used for debugging
|
|
|
|
Lang string // TODO: should default to 'en'
|
|
|
|
KeepaliveInterval time.Duration // Interval between keepalive packets
|
|
|
|
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.
|
2019-10-18 18:29:54 +00:00
|
|
|
Insecure bool
|
2020-03-06 15:44:01 +00:00
|
|
|
|
|
|
|
// Activate stream management process during session
|
|
|
|
StreamManagementEnable bool
|
|
|
|
// Enable stream management resume capability
|
|
|
|
streamManagementResume bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsStreamResumable tells if a stream session is resumable by reading the "config" part of a client.
|
|
|
|
// It checks if stream management is enabled, and if stream resumption was set and accepted by the server.
|
|
|
|
func IsStreamResumable(c *Client) bool {
|
|
|
|
return c.config.StreamManagementEnable && c.config.streamManagementResume
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|