minor improvements
This commit is contained in:
parent
efa41b29aa
commit
ac2f6c5ed4
@ -120,6 +120,7 @@ void TcUnixUdpPollingTask::setTimeout(double timeoutSeconds) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: sleep after error detection to prevent spam
|
||||||
void TcUnixUdpPollingTask::handleReadError() {
|
void TcUnixUdpPollingTask::handleReadError() {
|
||||||
switch(errno) {
|
switch(errno) {
|
||||||
case(EAGAIN): {
|
case(EAGAIN): {
|
||||||
|
@ -101,8 +101,8 @@ void TmTcUnixUdpBridge::checkAndSetClientAddress(sockaddr_in newAddress) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void TmTcUnixUdpBridge::handleSocketError() {
|
|
||||||
|
|
||||||
|
void TmTcUnixUdpBridge::handleSocketError() {
|
||||||
// See: https://man7.org/linux/man-pages/man2/socket.2.html
|
// See: https://man7.org/linux/man-pages/man2/socket.2.html
|
||||||
switch(errno) {
|
switch(errno) {
|
||||||
case(EACCES):
|
case(EACCES):
|
||||||
@ -163,7 +163,8 @@ void TmTcUnixUdpBridge::handleBindError() {
|
|||||||
void TmTcUnixUdpBridge::handleSendError() {
|
void TmTcUnixUdpBridge::handleSendError() {
|
||||||
switch(errno) {
|
switch(errno) {
|
||||||
default:
|
default:
|
||||||
sif::error << "Error: " << strerror(errno) << std::endl;
|
sif::error << "TmTcUnixBridge::handleSendError: "
|
||||||
|
<< strerror(errno) << std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user