#ifndef TCP_RECEIVER_H_ #define TCP_RECEIVER_H_ #include #include #include #include #include #include class TcpReceiver : public CThread { public: enum eLoadResults { SUCCESS = 0, INVALID_INPUT = -1, FILE_OPEN_FAILURE = -2, FILE_READ_ERROR = -3, NOT_ENOUGH_MEMORY = -4, NOT_A_VALID_PLUGIN = -5, }; TcpReceiver(int32_t port); ~TcpReceiver(); sigslot::signal2 serverReceiveStart; sigslot::signal3 serverReceiveFinished; private: void executeThread(); int32_t loadToMemory(int32_t clientSocket, uint32_t ipAddress); bool saveFileToSDCard(const char * path, void * buffer,uint32_t size); bool exitRequested; int32_t serverPort; int32_t serverSocket; }; #endif