Ignore:
Timestamp:
Oct 20, 2023, 9:45:38 PM (21 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/upload/bncuploadcaster.cpp

    r10221 r10227  
    163163        if (_ntripVersion == "1") {
    164164          _outSocket->write(_outBuffer);
     165          _outSocket->flush();
    165166        } else {
    166167          QString chunkSize = QString("%1").arg(_outBuffer.size(), 0, 16,  QLatin1Char('0'));
    167168          QByteArray chunkedData = chunkSize.toLatin1() + "\r\n" + _outBuffer  + "\r\n";
    168169          _outSocket->write(chunkedData);
     170          _outSocket->flush();
    169171        }
    170         _outSocket->flush();
    171172        emit newBytes(_mountpoint.toLatin1(), _outBuffer.size());
    172173      }
Note: See TracChangeset for help on using the changeset viewer.