Changeset 975 in ntrip
- Timestamp:
- Jul 26, 2008, 10:20:29 AM (16 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncapp.cpp
r974 r975 117 117 _waitCoTime = 1; 118 118 } 119 120 _corrs = new QMultiMap<long, QString>; 119 121 } 120 122 … … 140 142 delete _glonassEph[ii-PRN_GLONASS_START]; 141 143 } 144 145 delete _corrs; 142 146 } 143 147 … … 611 615 } 612 616 617 // An old correction - throw it away 618 // --------------------------------- 619 if (coTime <= _lastDumpCoSec) { 620 return; 621 } 622 623 _corrs->insert(coTime, QString(line + " " + staID)); 624 613 625 QMutableListIterator<QTcpSocket*> is(*_socketsCorr); 614 626 while (is.hasNext()) { -
trunk/BNC/bncapp.h
r974 r975 86 86 long _lastDumpCoSec; 87 87 long _waitCoTime; 88 QMultiMap<long, QString>* _corrs; 88 89 }; 89 90 #endif
Note:
See TracChangeset
for help on using the changeset viewer.