Changeset 8641 in ntrip for branches/BNC_2.12/src/bncrinex.cpp
- Timestamp:
- Mar 25, 2019, 10:37:46 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/BNC_2.12/src/bncrinex.cpp
r8620 r8641 170 170 } 171 171 if (!sklDir.isEmpty() && sklDir != "none") { 172 QUrl url(sklDir + "/" + _mountPoint.path().mid(1,4).toLower() + ".skl"); 172 QString mtp; 173 if (_rnxV3) { 174 mtp = _mountPoint.path().mid(1,9).toUpper() + ".skl"; 175 } 176 else { 177 mtp = _mountPoint.path().mid(1,4).toLower() + ".skl"; 178 } 179 QUrl url(sklDir + "/" + mtp); 173 180 if (url.port() == -1) { 174 181 if (sklDir.contains("https", Qt::CaseInsensitive)) {
Note:
See TracChangeset
for help on using the changeset viewer.