Ignore:
Timestamp:
Jun 2, 2022, 2:19:35 PM (23 months ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

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

    r9748 r9757  
    160160        if (_ntripVersion == "1") {
    161161          _outSocket->write(_outBuffer);
    162           _outSocket->flush();
    163162        } else {
    164163          QString chunkSize = QString("%1").arg(_outBuffer.size(), 0, 16,  QLatin1Char('0'));
    165164          QByteArray chunkedData = chunkSize.toLatin1() + "\r\n" + _outBuffer  + "\r\n";
    166165          _outSocket->write(chunkedData);
    167           _outSocket->flush();
    168166        }
     167        _outSocket->flush();
    169168        emit newBytes(_mountpoint.toLatin1(), _outBuffer.size());
    170169      }
Note: See TracChangeset for help on using the changeset viewer.