Skip to content

Commit 9832268

Browse files
fixup! readapting ConnectionHandler implementation to use setting struct
1 parent 15ffdf5 commit 9832268

6 files changed

+6
-4
lines changed

src/CatM1ConnectionHandler.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ class CatM1ConnectionHandler : public ConnectionHandler
4040
{
4141
public:
4242

43+
CatM1ConnectionHandler();
4344
CatM1ConnectionHandler(const char * pin, const char * apn, const char * login, const char * pass, RadioAccessTechnologyType rat = CATM1, uint32_t band = BAND_3 | BAND_20 | BAND_19, bool const keep_alive = true);
4445

4546

src/CellularConnectionHandler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
class CellularConnectionHandler : public ConnectionHandler
3434
{
3535
public:
36-
36+
CellularConnectionHandler();
3737
CellularConnectionHandler(const char * pin, const char * apn, const char * login, const char * pass, bool const keep_alive = true);
3838

3939

src/EthernetConnectionHandler.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class EthernetConnectionHandler : public ConnectionHandler
4444
{
4545
public:
4646

47+
EthernetConnectionHandler();
4748
EthernetConnectionHandler(unsigned long const timeout = 15000, unsigned long const responseTimeout = 4000, bool const keep_alive = true);
4849
EthernetConnectionHandler(const IPAddress ip, const IPAddress dns, const IPAddress gateway, const IPAddress netmask, unsigned long const timeout = 15000, unsigned long const responseTimeout = 4000, bool const keep_alive = true);
4950
EthernetConnectionHandler(const char * ip, const char * dns, const char * gateway, const char * netmask, unsigned long const timeout = 15000, unsigned long const responseTimeout = 4000, bool const keep_alive = true);

src/GSMConnectionHandler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
class GSMConnectionHandler : public ConnectionHandler
4040
{
4141
public:
42-
42+
GSMConnectionHandler();
4343
GSMConnectionHandler(const char * pin, const char * apn, const char * login, const char * pass, bool const keep_alive = true);
4444

4545

src/NBConnectionHandler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
class NBConnectionHandler : public ConnectionHandler
4040
{
4141
public:
42-
42+
NBConnectionHandler();
4343
NBConnectionHandler(char const * pin, bool const keep_alive = true);
4444
NBConnectionHandler(char const * pin, char const * apn, bool const keep_alive = true);
4545
NBConnectionHandler(char const * pin, char const * apn, char const * login, char const * pass, bool const keep_alive = true);

src/WiFiConnectionHandler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
class WiFiConnectionHandler : public ConnectionHandler
6363
{
6464
public:
65-
65+
WiFiConnectionHandler();
6666
WiFiConnectionHandler(char const * ssid, char const * pass, bool const keep_alive = true);
6767

6868

0 commit comments

Comments
 (0)