2021-03-21 00:30:33 +01:00
|
|
|
#include "TcpIpBase.h"
|
|
|
|
|
|
|
|
#ifdef __unix__
|
|
|
|
|
2021-03-21 12:51:28 +01:00
|
|
|
#include <errno.h>
|
2021-03-21 00:30:33 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
TcpIpBase::TcpIpBase() {
|
|
|
|
closeSocket(serverSocket);
|
|
|
|
}
|
|
|
|
|
|
|
|
TcpIpBase::~TcpIpBase() {
|
|
|
|
#ifdef _WIN32
|
|
|
|
WSACleanup();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int TcpIpBase::closeSocket(socket_t socket) {
|
|
|
|
#ifdef _WIN32
|
|
|
|
return closesocket(socket);
|
|
|
|
#elif defined(__unix__)
|
2021-03-21 12:51:28 +01:00
|
|
|
return close(socket);
|
2021-03-21 00:30:33 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int TcpIpBase::getLastSocketError() {
|
|
|
|
#ifdef _WIN32
|
|
|
|
return WSAGetLastError();
|
|
|
|
#elif defined(__unix__)
|
|
|
|
return errno;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
ReturnValue_t TcpIpBase::initialize() {
|
|
|
|
#ifdef _WIN32
|
|
|
|
/* Initiates Winsock DLL. */
|
|
|
|
WSAData wsaData;
|
|
|
|
WORD wVersionRequested = MAKEWORD(2, 2);
|
|
|
|
int err = WSAStartup(wVersionRequested, &wsaData);
|
|
|
|
if (err != 0) {
|
|
|
|
/* Tell the user that we could not find a usable Winsock DLL. */
|
|
|
|
#if FSFW_CPP_OSTREAM_ENABLED == 1
|
|
|
|
sif::error << "TmTcWinUdpBridge::TmTcWinUdpBridge: WSAStartup failed with error: " <<
|
|
|
|
err << std::endl;
|
|
|
|
#endif
|
|
|
|
return HasReturnvaluesIF::RETURN_FAILED;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return HasReturnvaluesIF::RETURN_OK;
|
|
|
|
}
|