Changeset 975 in ntrip


Ignore:
Timestamp:
Jul 26, 2008, 10:20:29 AM (16 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncapp.cpp

    r974 r975  
    117117    _waitCoTime = 1;
    118118  }
     119
     120  _corrs = new QMultiMap<long, QString>;
    119121}
    120122
     
    140142    delete _glonassEph[ii-PRN_GLONASS_START];
    141143  }
     144
     145  delete _corrs;
    142146}
    143147
     
    611615  }
    612616
     617  // An old correction - throw it away
     618  // ---------------------------------
     619  if (coTime <= _lastDumpCoSec) {
     620    return;
     621  }
     622
     623  _corrs->insert(coTime, QString(line + " " + staID));
     624
    613625  QMutableListIterator<QTcpSocket*> is(*_socketsCorr);
    614626  while (is.hasNext()) {
  • trunk/BNC/bncapp.h

    r974 r975  
    8686    long                _lastDumpCoSec;
    8787    long                _waitCoTime;
     88    QMultiMap<long, QString>* _corrs;
    8889};
    8990#endif
Note: See TracChangeset for help on using the changeset viewer.