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

Move new API definitions down a bit in header

This commit is contained in:
Sandeep Mistry 2016-06-17 16:50:43 -04:00
parent 8012c8dace
commit 9f0078440f

View File

@ -48,14 +48,6 @@ public:
HttpClient(Client& aClient, const String& aServerName, uint16_t aServerPort = kHttpPort); HttpClient(Client& aClient, const String& aServerName, uint16_t aServerPort = kHttpPort);
HttpClient(Client& aClient, const IPAddress& aServerAddress, uint16_t aServerPort = kHttpPort); HttpClient(Client& aClient, const IPAddress& aServerAddress, uint16_t aServerPort = kHttpPort);
/** Enables connection keep-alive mode
*/
void connectionKeepAlive();
/** Disables sending the default request headers (Host and User Agent)
*/
void noDefaultRequestHeaders();
/** Start a more complex request. /** Start a more complex request.
Use this when you need to send additional headers in the request, Use this when you need to send additional headers in the request,
but you will also need to call endRequest() when you are finished. but you will also need to call endRequest() when you are finished.
@ -215,6 +207,14 @@ public:
*/ */
int contentLength(); int contentLength();
/** Enables connection keep-alive mode
*/
void connectionKeepAlive();
/** Disables sending the default request headers (Host and User Agent)
*/
void noDefaultRequestHeaders();
// Inherited from Print // Inherited from Print
// Note: 1st call to these indicates the user is sending the body, so if need // Note: 1st call to these indicates the user is sending the body, so if need
// Note: be we should finish the header first // Note: be we should finish the header first