1
0
mirror of https://github.com/arduino-libraries/ArduinoHttpClient.git synced 2025-08-02 06:06:32 +03:00

Add new beginBody API

This commit is contained in:
Sandeep Mistry
2017-03-28 14:12:20 -04:00
parent 2394bbb7cd
commit 448a1520c8
4 changed files with 15 additions and 1 deletions

View File

@ -263,6 +263,11 @@ void HttpClient::flushClientRx()
}
void HttpClient::endRequest()
{
beginBody();
}
void HttpClient::beginBody()
{
if (iState < eRequestSent)
{