Changeset 2810 in ntrip
- Timestamp:
- Dec 18, 2010, 12:41:52 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpppclient.cpp
r2809 r2810 632 632 void bncPPPclient::processEpochs() { 633 633 634 // Synchronization threshold (not used in SPP mode) 635 // ------------------------------------------------ 634 636 double maxDt = 0.0; 635 637 if (!_pppMode) { … … 637 639 } 638 640 641 // Make sure the buffer does not grow beyond any limit 642 // --------------------------------------------------- 643 const unsigned MAX_EPODATA_SIZE = 120; 644 if (_epoData.size() > MAX_EPODATA_SIZE) { 645 delete _epoData.front(); 646 _epoData.pop(); 647 } 648 649 // Loop over all unprocessed epochs 650 // -------------------------------- 639 651 while (!_epoData.empty()) { 652 640 653 t_epoData* frontEpoData = _epoData.front(); 641 654 … … 643 656 // ---------------------------------- 644 657 if (maxDt != 0.0 && !_corr_tt.valid()) { 645 delete _epoData.front(); 646 _epoData.pop(); 647 continue; 648 } 649 650 if (maxDt == 0 || 651 (frontEpoData->tt - _corr_tt) < maxDt ) { 658 return; 659 } 660 661 // Process the front epoch 662 // ----------------------- 663 if (maxDt == 0 || frontEpoData->tt - _corr_tt < maxDt) { 652 664 processFrontEpoch(); 653 665 delete _epoData.front();
Note:
See TracChangeset
for help on using the changeset viewer.