Changeset 669 in ntrip
- Timestamp:
- Jan 30, 2008, 5:51:07 PM (17 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncgetthread.cpp
r668 r669 479 479 // --------------------- 480 480 if ( begCorrupt && !endCorrupt && secSucc > _adviseReco * 60 ) { 481 emit(newMessage(_staID + ": End_Corrupted, Recovery threshold exceeded"));481 emit(newMessage(_staID + ": Corrupted recovery threshold exceeded")); 482 482 callScript("End_Corrupted"); 483 483 endCorrupt = true; … … 490 490 // ----------------------- 491 491 if ( !begCorrupt && secFail > _adviseFail * 60 ) { 492 emit(newMessage(_staID + ": Begin_Corrupted, Failure threshold exceeded"));492 emit(newMessage(_staID + ": Corrupted failure threshold exceeded")); 493 493 callScript("Begin_Corrupted"); 494 494 begCorrupt = true; … … 508 508 _decodeStart.setDate(QDate()); 509 509 _decodeStart.setTime(QTime()); 510 emit(newMessage(_staID + ": End_Outage, Recovery threshold exceeded"));510 emit(newMessage(_staID + ": Outage recovery threshold exceeded")); 511 511 callScript("End_Outage"); 512 512 } … … 613 613 _decodeStop.setDate(QDate()); 614 614 _decodeStop.setTime(QTime()); 615 emit(newMessage(_staID + ": Begin_Outage, Failure threshold exceeded"));615 emit(newMessage(_staID + ": Outage failure threshold exceeded")); 616 616 callScript("Begin_Outage"); 617 617 } -
trunk/BNC/bnchelp.html
r668 r669 365 365 </p> 366 366 <p> 367 <u>Stream outages:</u> BNC considers a connection to be broken when there are no incoming data detected for more than 20 seconds. When this occurs, BNC will attempt to reconnect at a decreasing rate. It will first try to reconnect with 1 second delay, and again in 2 seconds if the previous attempt failed. If the attempt is still unsuccessful, it will try to reconnect within 4 seconds after the previous attempt and so on. The wait time doubles each time with a maximum wait time of 256 seconds. This reconnection process is documented in the 'Log' file/section.367 <u>Stream outages:</u> BNC considers a connection to be broken when there are no incoming data detected for more than 20 seconds. When this occurs, BNC will attempt to reconnect at a decreasing rate. It will first try to reconnect with 1 second delay, and again in 2 seconds if the previous attempt failed. If the attempt is still unsuccessful, it will try to reconnect within 4 seconds after the previous attempt and so on. The wait time doubles each time with a maximum wait time of 256 seconds. 368 368 </p> 369 369 <p> … … 371 371 </p> 372 372 <p> 373 If the stream failures or recoveries caused by an outage or corrupted data exceed the 'Failure' or 'Recovery' thresholds, BNC can inform its users about this event. The information becomes available in the 'Log' file/section as a 'Begin_Outage', 'End_Outage', 'Begin_Corrupted', or 'End_Corrupted' message. It can also be passed on as an Advisory note to an 'Advisory script' or batch file to keep BNC's operator or affected stream providers up-to-date by email. This functionality lets you use BNC as a real-time performance monitor and alarm system for the network of GNSS reference stations in use.373 If the stream failures or recoveries caused by an outage or corrupted data exceed the 'Failure' or 'Recovery' thresholds, BNC can inform its users about this event. The information becomes available in the 'Log' file/section. It can also be passed on as an Advisory note to an 'Advisory script' or batch file to keep BNC's operator or affected stream providers up-to-date by email. This functionality lets you use BNC as a real-time performance monitor and alarm system for the network of GNSS reference stations in use. 374 374 </p> 375 375
Note:
See TracChangeset
for help on using the changeset viewer.