Compare commits
2 Commits
99e0f7d82c
...
f0398b717b
Author | SHA1 | Date | |
---|---|---|---|
|
f0398b717b | ||
|
ef0ab58add |
@ -6,7 +6,7 @@
|
|||||||
#include "TCPClient.h"
|
#include "TCPClient.h"
|
||||||
|
|
||||||
#define MAX_CLIENT -1
|
#define MAX_CLIENT -1
|
||||||
//#define DEBUG_TCPS
|
#define DEBUG_TCPS
|
||||||
|
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
@ -138,11 +138,8 @@ class TCPServer
|
|||||||
_currentClient->_clientState = TCPClient::DISCARDED;
|
_currentClient->_clientState = TCPClient::DISCARDED;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(_currentClient->_dataSize > 0)
|
|
||||||
{
|
|
||||||
_currentClient->_newDataAvailable = false;
|
|
||||||
}
|
|
||||||
processClientData(_currentClient);//We process the actual data
|
processClientData(_currentClient);//We process the actual data
|
||||||
|
_currentClient->_newDataAvailable = false;
|
||||||
|
|
||||||
if(_currentClient->_clientState == TCPClient::ClientState::DISCARDED)
|
if(_currentClient->_clientState == TCPClient::ClientState::DISCARDED)
|
||||||
{
|
{
|
||||||
|
@ -49,3 +49,21 @@ char *dateTimeFormater(char *pointer, const uint8_t value, const char character)
|
|||||||
|
|
||||||
return pointer;
|
return pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char *lastIndexOf(char *str, const char character)
|
||||||
|
{
|
||||||
|
char *last(NULL), *current(str);
|
||||||
|
do
|
||||||
|
{
|
||||||
|
current = strchr(current, character);
|
||||||
|
if(current != NULL)
|
||||||
|
{
|
||||||
|
last = current;
|
||||||
|
if(*(current+1) == '\0')break;
|
||||||
|
|
||||||
|
current += 1;
|
||||||
|
}
|
||||||
|
}while(current != NULL);
|
||||||
|
|
||||||
|
return last;
|
||||||
|
}
|
||||||
|
@ -55,6 +55,8 @@ typedef struct viewLink{
|
|||||||
|
|
||||||
char *addChar(char *pointer, const char character);
|
char *addChar(char *pointer, const char character);
|
||||||
|
|
||||||
|
char *lastIndexOf(char *str, const char character);
|
||||||
|
|
||||||
char *dateTimeFormater(char *pointer, const uint8_t value, const char character);
|
char *dateTimeFormater(char *pointer, const uint8_t value, const char character);
|
||||||
|
|
||||||
#endif //DEFINITION_H
|
#endif //DEFINITION_H
|
||||||
|
Loading…
Reference in New Issue
Block a user