Compare commits
2 Commits
99e0f7d82c
...
f0398b717b
Author | SHA1 | Date | |
---|---|---|---|
|
f0398b717b | ||
|
ef0ab58add |
@ -6,7 +6,7 @@
|
||||
#include "TCPClient.h"
|
||||
|
||||
#define MAX_CLIENT -1
|
||||
//#define DEBUG_TCPS
|
||||
#define DEBUG_TCPS
|
||||
|
||||
|
||||
template <typename T>
|
||||
@ -137,12 +137,9 @@ class TCPServer
|
||||
#endif
|
||||
_currentClient->_clientState = TCPClient::DISCARDED;
|
||||
}
|
||||
|
||||
if(_currentClient->_dataSize > 0)
|
||||
{
|
||||
_currentClient->_newDataAvailable = false;
|
||||
}
|
||||
|
||||
processClientData(_currentClient);//We process the actual data
|
||||
_currentClient->_newDataAvailable = false;
|
||||
|
||||
if(_currentClient->_clientState == TCPClient::ClientState::DISCARDED)
|
||||
{
|
||||
|
@ -49,3 +49,21 @@ char *dateTimeFormater(char *pointer, const uint8_t value, const char character)
|
||||
|
||||
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 *lastIndexOf(char *str, const char character);
|
||||
|
||||
char *dateTimeFormater(char *pointer, const uint8_t value, const char character);
|
||||
|
||||
#endif //DEFINITION_H
|
||||
|
Loading…
Reference in New Issue
Block a user