Changeset 10696 in ntrip for trunk/BNC/src/bnccaster.cpp
- Timestamp:
- Jul 16, 2025, 12:25:55 PM (6 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bnccaster.cpp
r10503 r10696 76 76 _server = new QTcpServer; 77 77 _server->setProxy(QNetworkProxy::NoProxy); 78 if ( !_server->listen(QHostAddress:: Any, port) ) {78 if ( !_server->listen(QHostAddress::LocalHost, port) ) { 79 79 QString message = "bncCaster: Cannot listen on sync port " 80 80 + QByteArray::number(port) + ": " … … 94 94 _uServer = new QTcpServer; 95 95 _uServer->setProxy(QNetworkProxy::NoProxy); 96 if ( !_uServer->listen(QHostAddress:: Any, uPort) ) {96 if ( !_uServer->listen(QHostAddress::LocalHost, uPort) ) { 97 97 QString message = "bncCaster: Cannot listen on usync port " 98 98 + QByteArray::number(uPort) + ": " … … 123 123 _miscServer = new QTcpServer; 124 124 _miscServer->setProxy(QNetworkProxy::NoProxy); 125 if ( !_miscServer->listen(QHostAddress:: Any, _miscPort) ) {125 if ( !_miscServer->listen(QHostAddress::LocalHost, _miscPort) ) { 126 126 QString message = "bncCaster: Cannot listen on miscellaneous output port " 127 127 + QByteArray::number(_miscPort) + ": "
Note:
See TracChangeset
for help on using the changeset viewer.