diff options
Diffstat (limited to 'indra/test')
| -rw-r--r-- | indra/test/lltemplatemessagebuilder_tut.cpp | 7 | ||||
| -rw-r--r-- | indra/test/message_tut.cpp | 8 | 
2 files changed, 13 insertions, 2 deletions
| diff --git a/indra/test/lltemplatemessagebuilder_tut.cpp b/indra/test/lltemplatemessagebuilder_tut.cpp index 52d1436761..c71d63a2d7 100644 --- a/indra/test/lltemplatemessagebuilder_tut.cpp +++ b/indra/test/lltemplatemessagebuilder_tut.cpp @@ -59,6 +59,9 @@ namespace tut  			if(! init)  			{  				ll_init_apr(); +				const F32 circuit_heartbeat_interval=5; +				const F32 circuit_timeout=100; +  				start_messaging_system("notafile", 13035,  									   LL_VERSION_MAJOR,  									   LL_VERSION_MINOR,         @@ -66,7 +69,9 @@ namespace tut  									   FALSE,          									   "notasharedsecret",  									   NULL, -									   false); +									   false, +									   circuit_heartbeat_interval, +									   circuit_timeout);  				//init_prehash_data();  				init = true;  			} diff --git a/indra/test/message_tut.cpp b/indra/test/message_tut.cpp index d426511d24..0cafdcd679 100644 --- a/indra/test/message_tut.cpp +++ b/indra/test/message_tut.cpp @@ -70,6 +70,9 @@ namespace tut  				//init_prehash_data();  				init = true;  			} +			const F32 circuit_heartbeat_interval=5; +			const F32 circuit_timeout=100; +  			// currently test disconnected message system  			start_messaging_system("notafile", 13035, @@ -79,7 +82,10 @@ namespace tut  								   FALSE,          								   "notasharedsecret",  								   NULL, -								   false); +								   false, +								   circuit_heartbeat_interval, +								   circuit_timeout +								   );  			// generate temp dir  			std::ostringstream ostr;  #if LL_WINDOWS | 
