File tree Expand file tree Collapse file tree 2 files changed +1
-12
lines changed Expand file tree Collapse file tree 2 files changed +1
-12
lines changed Original file line number Diff line number Diff line change 30
30
31
31
#include " BearSSLClient.h"
32
32
33
- BearSSLClient::BearSSLClient (Client& client) :
34
- BearSSLClient(&client, ArduinoIoTCloudTrustAnchor, ArduinoIoTCloudTrustAnchor_NUM)
35
- {
36
- }
37
-
38
- BearSSLClient::BearSSLClient (Client& client, const br_x509_trust_anchor* myTAs, int myNumTAs)
39
- : BearSSLClient(&client, myTAs, myNumTAs)
40
- {
41
- }
42
-
43
33
BearSSLClient::BearSSLClient (Client* client, const br_x509_trust_anchor* myTAs, int myNumTAs) :
44
34
_client(client),
45
35
_TAs(myTAs),
Original file line number Diff line number Diff line change 41
41
class BearSSLClient : public Client {
42
42
43
43
public:
44
- BearSSLClient (Client& client);
45
- BearSSLClient (Client& client, const br_x509_trust_anchor* myTAs, int myNumTAs);
44
+
46
45
BearSSLClient (Client* client, const br_x509_trust_anchor* myTAs, int myNumTAs);
47
46
virtual ~BearSSLClient ();
48
47
You can’t perform that action at this time.
0 commit comments