1
0
forked from fsfw/fsfw

added generic error handler

This commit is contained in:
2021-03-08 23:14:10 +01:00
parent 4e5e6e145e
commit 8be4f45969
4 changed files with 47 additions and 19 deletions

View File

@ -41,6 +41,11 @@ private:
//! by another task.
MutexIF* mutex;
enum class ErrorSources {
SOCKET_CALL,
SETSOCKOPT_CALL
};
void handleSocketError();
void handleBindError();
void handleSendError();