mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
Added PUT Request to HTTP Client (#2310)
* Added PUT Request to HTTP Client * Replaced Tabstops with spaces
This commit is contained in:
committed by
Ivan Grokhotkov
parent
4dc4e75216
commit
3fc3e9a99d
@ -156,6 +156,8 @@ public:
|
||||
int GET();
|
||||
int POST(uint8_t * payload, size_t size);
|
||||
int POST(String payload);
|
||||
int PUT(uint8_t * payload, size_t size);
|
||||
int PUT(String payload);
|
||||
int sendRequest(const char * type, String payload);
|
||||
int sendRequest(const char * type, uint8_t * payload = NULL, size_t size = 0);
|
||||
int sendRequest(const char * type, Stream * stream, size_t size = 0);
|
||||
|
Reference in New Issue
Block a user