error count in all sendError calls

This commit is contained in:
Wolfgang Hottgenroth
2017-01-04 17:17:08 +01:00
parent 8b34b562f8
commit 20edb0bf68
7 changed files with 8 additions and 8 deletions

View File

@ -7,7 +7,7 @@
class ResponseCallback {
public:
virtual void sendResponse(uint8_t *responseBuffer, uint16_t responseBufferLength, uint8_t token, char *name) =0;
virtual void sendError(uint8_t code, uint8_t token, char *name) = 0;
virtual void sendError(uint8_t code, uint16_t count, uint8_t token, char *name) = 0;
};
class RequestSender {