Merge pull request #961 from Lord-Grey/Improve_errohandling

Improve UDP-Device Error handling
This commit is contained in:
LordGrey
2020-09-05 15:14:22 +02:00
committed by GitHub
2 changed files with 34 additions and 30 deletions

View File

@@ -61,12 +61,12 @@ protected:
///
/// @return Zero on success, else negative
///
int writeBytes(unsigned size, const uint8_t *data);
int writeBytes(const unsigned size, const uint8_t *data);
///
QUdpSocket * _udpSocket;
QHostAddress _address;
ushort _port;
quint16 _port;
QString _defaultHost;
};