Extend HTTPClient to allow connecting with a client certificate (#788)

* Forward client certificate to wificlient secure

* remove comment
This commit is contained in:
Andreas Pokorny
2017-10-30 09:37:33 +01:00
committed by Me No Dev
parent 0768590332
commit 36dba996c1
2 changed files with 22 additions and 3 deletions

View File

@ -129,6 +129,7 @@ public:
bool begin(String url, const char* CAcert);
bool begin(String host, uint16_t port, String uri = "/");
bool begin(String host, uint16_t port, String uri, const char* CAcert);
bool begin(String host, uint16_t port, String uri, const char* CAcert, const char* cli_cert, const char* cli_key);
void end(void);