1
0
mirror of https://github.com/arduino-libraries/ArduinoHttpClient.git synced 2025-04-19 21:22:15 +03:00

Remove unimplemented finishRequest from header

This commit is contained in:
Sandeep Mistry 2016-06-17 16:37:32 -04:00
parent 5df9084d8e
commit 70dc5ee44e

View File

@ -148,11 +148,6 @@ public:
void sendBasicAuth(const String& aUser, const String& aPassword) void sendBasicAuth(const String& aUser, const String& aPassword)
{ sendBasicAuth(aUser.c_str(), aPassword.c_str()); } { sendBasicAuth(aUser.c_str(), aPassword.c_str()); }
/** Finish sending the HTTP request. This basically just sends the blank
line to signify the end of the request
*/
void finishRequest();
/** Get the HTTP status code contained in the response. /** Get the HTTP status code contained in the response.
For example, 200 for successful request, 404 for file not found, etc. For example, 200 for successful request, 404 for file not found, etc.
*/ */