We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf25224 commit 8edb115Copy full SHA for 8edb115
1 file changed
libraries/SocketWrapper/src/AClient.h
@@ -71,11 +71,15 @@ class ASslClient : public AClient {
71
72
ASslClient() {}
73
74
+ /* The disableSNI function needs to be called prior to connect */
75
void disableSNI(bool statusSNI);
-
76
+ /* The appendCustomCACert function needs to be called prior to connect */
77
void appendCustomCACert(const char* ca_cert);
78
+ /* The setCACert function needs to be called prior to connect */
79
void setCACert(const char* rootCA);
80
+ /* The setCertificate function needs to be called prior to connect */
81
void setCertificate(const char* clientCert);
82
+ /* The setPrivateKey function needs to be called prior to connect */
83
void setPrivateKey(const char* privateKey);
84
85
protected:
0 commit comments