Correct non-ssl connection

This commit is contained in:
Sara Damiano
2019-05-20 10:37:30 -04:00
parent ff4fa1e042
commit 2e03cdeaba
11 changed files with 15 additions and 14 deletions

View File

@@ -99,7 +99,7 @@ public:
virtual int connect(const char *host, uint16_t port, int timeout_s) {
// NOTE: Not caling stop() or yeild() here
at->streamClear(); // Empty anything in the buffer before starting
sock_connected = at->modemConnect(host, port, mux, timeout_s);
sock_connected = at->modemConnect(host, port, mux, false, timeout_s);
return sock_connected;
}
virtual int connect(const char *host, uint16_t port) {