Skip to content

Commit 9b3987c

Browse files
author
Leonardo José
authored
Add getter and setter functions
1 parent b93e3d2 commit 9b3987c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/HttpClient.h

+2
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,8 @@ class HttpClient : public Client
317317
virtual operator bool() { return bool(iClient); };
318318
virtual uint32_t httpResponseTimeout() { return iHttpResponseTimeout; };
319319
virtual void setHttpResponseTimeout(uint32_t timeout) { iHttpResponseTimeout = timeout; };
320+
virtual uint32_t httpWaitForDataDelay() { return iHttpWaitForDataDelay; };
321+
virtual void setHttpWaitForDataDelay(uint32_t delay) { iHttpWaitForDataDelay = delay; };
320322
protected:
321323
/** Reset internal state data back to the "just initialised" state
322324
*/

0 commit comments

Comments
 (0)