Changeset 3233 in ntrip
- Timestamp:
- Apr 1, 2011, 1:58:39 PM (14 years ago)
- Location:
- trunk/BNC/upload
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/upload/bncrtnetdecoder.cpp
r3225 r3233 52 52 // List of upload casters 53 53 // ---------------------- 54 int iRow = -1; 54 55 QListIterator<QString> it(settings.value("uploadMountpointsOut").toStringList()); 55 56 while (it.hasNext()) { 56 57 QStringList hlp = it.next().split(","); 57 58 if (hlp.size() > 6) { 59 ++iRow; 58 60 int outPort = hlp[1].toInt(); 59 61 bool CoM = (hlp[5].toInt() == Qt::Checked); … … 61 63 hlp[2], hlp[0], outPort, 62 64 hlp[3], hlp[4], CoM, 63 hlp[6], hlp[7], "" );65 hlp[6], hlp[7], "", iRow); 64 66 newCaster->start(); 65 67 _casters.push_back(newCaster); -
trunk/BNC/upload/bncrtnetuploadcaster.cpp
r3230 r3233 32 32 const QString& sp3FileName, 33 33 const QString& rnxFileName, 34 const QString& outFileName ) :35 bncUploadCaster(mountpoint, outHost, outPort, password) {34 const QString& outFileName, int iRow) : 35 bncUploadCaster(mountpoint, outHost, outPort, password, iRow) { 36 36 37 37 _crdTrafo = crdTrafo; -
trunk/BNC/upload/bncrtnetuploadcaster.h
r3229 r3233 24 24 const QString& sp3FileName, 25 25 const QString& rnxFileName, 26 const QString& outFileName );26 const QString& outFileName, int iRow); 27 27 void decodeRtnetStream(char* buffer, int bufLen); 28 28 protected: -
trunk/BNC/upload/bncuploadcaster.cpp
r3227 r3233 26 26 bncUploadCaster::bncUploadCaster(const QString& mountpoint, 27 27 const QString& outHost, int outPort, 28 const QString& password ) {28 const QString& password, int iRow) { 29 29 30 30 connect(this, SIGNAL(newMessage(QByteArray,bool)), … … 37 37 _outSocket = 0; 38 38 _sOpenTrial = 0; 39 _iRow = iRow; 39 40 _isToBeDeleted = false; 40 41 } -
trunk/BNC/upload/bncuploadcaster.h
r3226 r3233 9 9 bncUploadCaster(const QString& mountpoint, 10 10 const QString& outHost, int outPort, 11 const QString& password );11 const QString& password, int iRow); 12 12 virtual void deleteSafely(); 13 13 … … 31 31 int _sOpenTrial; 32 32 QDateTime _outSocketOpenTime; 33 int _iRow; 33 34 }; 34 35
Note:
See TracChangeset
for help on using the changeset viewer.