Changed stream start timeout values.

git-svn-id: http://voip.null.ro/svn/yate@4131 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
marian 2011-02-25 10:53:23 +00:00
parent 3e16f27c7a
commit 071c85ecb0
3 changed files with 10 additions and 10 deletions

View File

@ -22,9 +22,9 @@
; stream_starttimeout: integer: The interval, in milliseconds, allowed for a remote
; party to send the stream start tag
; Defaults to 5000 if missing or invalid
; Minimum allowed value is 1000, maximum allowed value is 10000
;stream_starttimeout=5000
; Defaults to 20000 if missing or invalid
; Minimum allowed value is 10000, maximum allowed value is 60000
;stream_starttimeout=20000
; stream_setuptimeout: integer: Overall stream setup interval in milliseconds. The timer
; will stop when the stream is authenticated

View File

@ -59,9 +59,9 @@
; stream_starttimeout: integer: The interval, in milliseconds, allowed for a remote
; party to send the stream start tag
; Defaults to 5000 if missing or invalid
; Minimum allowed value is 1000, maximum allowed value is 10000
;stream_starttimeout=5000
; Defaults to 20000 if missing or invalid
; Minimum allowed value is 10000, maximum allowed value is 60000
;stream_starttimeout=20000
; stream_setuptimeout: integer: Overall stream setup interval in milliseconds. The timer
; will stop when the stream is authenticated

View File

@ -79,12 +79,12 @@ static const String s_googleMailNode = "http://mail.google.com/xmpp/client/caps"
#define JB_RESTART_UPDATE_MAX 300000
// Stream setup timer
#define JB_SETUP_INTERVAL 180000
#define JB_SETUP_INTERVAL_MIN 5000
#define JB_SETUP_INTERVAL_MIN 60000
#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
#define JB_START_INTERVAL 20000
#define JB_START_INTERVAL_MIN 10000
#define JB_START_INTERVAL_MAX 60000
// Stream connect timer
#define JB_CONNECT_INTERVAL 60000
#define JB_CONNECT_INTERVAL_MIN 1000