revaming linux UDP stuff
This commit is contained in:
parent
cf120e2d86
commit
7173d2ecfc
@ -16,6 +16,7 @@ target_sources(${LIB_FSFW_NAME}
|
|||||||
TcUnixUdpPollingTask.cpp
|
TcUnixUdpPollingTask.cpp
|
||||||
TmTcUnixUdpBridge.cpp
|
TmTcUnixUdpBridge.cpp
|
||||||
Timer.cpp
|
Timer.cpp
|
||||||
|
tcpipHelpers.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
find_package(Threads REQUIRED)
|
find_package(Threads REQUIRED)
|
||||||
|
5
osal/linux/tcpipHelpers.cpp
Normal file
5
osal/linux/tcpipHelpers.cpp
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#include "tcpipHelpers.h"
|
||||||
|
|
||||||
|
void tcpip::handleError(Protocol protocol, ErrorSources errorSrc, dur_millis_t sleepDuration = 0) {
|
||||||
|
|
||||||
|
}
|
29
osal/linux/tcpipHelpers.h
Normal file
29
osal/linux/tcpipHelpers.h
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
#ifndef FSFW_OSAL_LINUX_TCPIPHELPERS_H_
|
||||||
|
#define FSFW_OSAL_LINUX_TCPIPHELPERS_H_
|
||||||
|
|
||||||
|
#include "../../timemanager/clockDefinitions.h"
|
||||||
|
|
||||||
|
namespace tcpip {
|
||||||
|
|
||||||
|
enum class Protocol {
|
||||||
|
UDP,
|
||||||
|
TCP
|
||||||
|
};
|
||||||
|
|
||||||
|
enum class ErrorSources {
|
||||||
|
GETADDRINFO_CALL,
|
||||||
|
SOCKET_CALL,
|
||||||
|
SETSOCKOPT_CALL,
|
||||||
|
BIND_CALL,
|
||||||
|
RECV_CALL,
|
||||||
|
RECVFROM_CALL,
|
||||||
|
LISTEN_CALL,
|
||||||
|
ACCEPT_CALL,
|
||||||
|
SENDTO_CALL
|
||||||
|
};
|
||||||
|
|
||||||
|
void handleError(Protocol protocol, ErrorSources errorSrc, dur_millis_t sleepDuration = 0);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* FSFW_OSAL_LINUX_TCPIPHELPERS_H_ */
|
Loading…
Reference in New Issue
Block a user