Changed stream setup and connect default and maximum timeout values.

git-svn-id: http://voip.null.ro/svn/yate@4130 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
marian 2011-02-25 09:58:56 +00:00
parent 5e80784ef8
commit 3e16f27c7a
3 changed files with 16 additions and 16 deletions

View File

@ -28,16 +28,16 @@
; stream_setuptimeout: integer: Overall stream setup interval in milliseconds. The timer
; will stop when the stream is authenticated
; Defaults to 60000 if missing or invalid
; Minimum allowed value is 5000, maximum allowed value is 120000
;stream_setuptimeout=60000
; Defaults to 120000 if missing or invalid
; Minimum allowed value is 5000, maximum allowed value is 600000
;stream_setuptimeout=120000
; stream_connecttimeout: integer: The interval, in milliseconds, allowed for an
; outgoing stream to make a TCP connection to a remote host, including SRV request
; and resolving domain(s)
; Defaults to 5000 if missing or invalid
; Minimum allowed value is 1000, maximum allowed value is 10000
;stream_connecttimeout=5000
; Defaults to 60000 if missing or invalid
; Minimum allowed value is 1000, maximum allowed value is 120000
;stream_connecttimeout=60000
; entitycaps: boolean: Enable entity capabilities cache.
; If enabled entity capabilities will be requested and cached each time a presence

View File

@ -65,16 +65,16 @@
; stream_setuptimeout: integer: Overall stream setup interval in milliseconds. The timer
; will stop when the stream is authenticated
; Defaults to 60000 if missing or invalid
; Minimum allowed value is 5000, maximum allowed value is 120000
;stream_setuptimeout=60000
; Defaults to 120000 if missing or invalid
; Minimum allowed value is 5000, maximum allowed value is 600000
;stream_setuptimeout=120000
; stream_connecttimeout: integer: The interval, in milliseconds, allowed for an
; outgoing stream to make a TCP connection to a remote host, including SRV request
; and resolving domain(s)
; Defaults to 5000 if missing or invalid
; Minimum allowed value is 1000, maximum allowed value is 10000
;stream_connecttimeout=5000
; Defaults to 60000 if missing or invalid
; Minimum allowed value is 1000, maximum allowed value is 120000
;stream_connecttimeout=60000
; stream_idletimeout: integer: The interval, in milliseconds, allowed for a
; server to server stream to be idle

View File

@ -78,17 +78,17 @@ static const String s_googleMailNode = "http://mail.google.com/xmpp/client/caps"
#define JB_RESTART_UPDATE_MIN 5000
#define JB_RESTART_UPDATE_MAX 300000
// Stream setup timer
#define JB_SETUP_INTERVAL 60000
#define JB_SETUP_INTERVAL 180000
#define JB_SETUP_INTERVAL_MIN 5000
#define JB_SETUP_INTERVAL_MAX 120000
#define JB_SETUP_INTERVAL_MAX 600000
// Wait stream start timer
#define JB_START_INTERVAL 5000
#define JB_START_INTERVAL_MIN 1000
#define JB_START_INTERVAL_MAX 10000
// Stream connect timer
#define JB_CONNECT_INTERVAL 5000
#define JB_CONNECT_INTERVAL 60000
#define JB_CONNECT_INTERVAL_MIN 1000
#define JB_CONNECT_INTERVAL_MAX 10000
#define JB_CONNECT_INTERVAL_MAX 120000
// Ping
#define JB_PING_INTERVAL 120000
#define JB_PING_INTERVAL_MIN 60000