Changeset 6447 in ntrip
- Timestamp:
- Dec 26, 2014, 4:26:33 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnccaster.cpp
r6432 r6447 67 67 reopenOutFile(); 68 68 69 _port = settings.value("outPort").toInt();70 71 if ( _port != 0) {69 int port = settings.value("outPort").toInt(); 70 71 if (port != 0) { 72 72 _server = new QTcpServer; 73 if ( !_server->listen(QHostAddress::Any, _port) ) {73 if ( !_server->listen(QHostAddress::Any, port) ) { 74 74 emit newMessage("bncCaster: Cannot listen on sync port", true); 75 75 } -
trunk/BNC/src/bnccaster.h
r6137 r6447 68 68 69 69 QFile* _outFile; 70 int _port;71 70 QTextStream* _out; 72 71 QMultiMap<long, t_satObs>* _epochs;
Note:
See TracChangeset
for help on using the changeset viewer.