File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -168,20 +168,20 @@ int ArduinoCellular::getSignalQuality(){
168
168
}
169
169
170
170
TinyGsmClient ArduinoCellular::getNetworkClient (){
171
- return TinyGsmClient (modem);
171
+ return ManagedTinyGsmClient (modem);
172
172
}
173
173
174
174
HttpClient ArduinoCellular::getHTTPClient (const char * server, const int port){
175
- return HttpClient (* new TinyGsmClient (modem), server, port);
175
+ return HttpClient (* new ManagedTinyGsmClient (modem), server, port);
176
176
}
177
177
178
178
#if defined(ARDUINO_CELLULAR_BEARSSL)
179
179
HttpClient ArduinoCellular::getHTTPSClient (const char * server, const int port){
180
- return HttpClient (* new BearSSLClient (* new TinyGsmClient (modem)), server, port);
180
+ return HttpClient (* new BearSSLClient (* new ManagedTinyGsmClient (modem)), server, port);
181
181
}
182
182
183
183
BearSSLClient ArduinoCellular::getSecureNetworkClient (){
184
- return BearSSLClient (* new TinyGsmClient (modem));
184
+ return BearSSLClient (* new ManagedTinyGsmClient (modem));
185
185
}
186
186
#endif
187
187
You can’t perform that action at this time.
0 commit comments