mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-19 23:22:16 +03:00
This commit is contained in:
parent
3c1bd65a76
commit
c18f7cb1e6
@ -154,7 +154,7 @@ Other Function Calls
|
|||||||
|
|
||||||
const String & uri(); // get the current uri
|
const String & uri(); // get the current uri
|
||||||
HTTPMethod method(); // get the current method
|
HTTPMethod method(); // get the current method
|
||||||
WiFiClient client(); // get the current client
|
WiFiClient & client(); // get the current client
|
||||||
HTTPUpload & upload(); // get the current upload
|
HTTPUpload & upload(); // get the current upload
|
||||||
void setContentLength(); // set content length
|
void setContentLength(); // set content length
|
||||||
void sendHeader(); // send HTTP header
|
void sendHeader(); // send HTTP header
|
||||||
|
@ -103,7 +103,7 @@ public:
|
|||||||
|
|
||||||
const String& uri() const { return _currentUri; }
|
const String& uri() const { return _currentUri; }
|
||||||
HTTPMethod method() const { return _currentMethod; }
|
HTTPMethod method() const { return _currentMethod; }
|
||||||
ClientType client() { return _currentClient; }
|
ClientType& client() { return _currentClient; }
|
||||||
HTTPUpload& upload() { return *_currentUpload; }
|
HTTPUpload& upload() { return *_currentUpload; }
|
||||||
|
|
||||||
// Allows setting server options (i.e. SSL keys) by the instantiator
|
// Allows setting server options (i.e. SSL keys) by the instantiator
|
||||||
|
Loading…
x
Reference in New Issue
Block a user