Skip to content

Commit

Permalink
Merge branch 'devel' of github.com:hpsaturn/esp32-wifi-cli into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
hpsaturn committed Mar 7, 2025
2 parents 4acdb83 + f89c600 commit 71854e9
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/telnet_cli.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,20 @@ bool ESP32WifiCLI::isTelnetEnable() {
bool ESP32WifiCLI::isTelnetRunning() {
return isServerEnable;
}
#endif
#endif

#ifdef DISABLE_CLI_TELNET
void ESP32WifiCLI::enableTelnet() {
}

void ESP32WifiCLI::disableTelnet() {
}

bool ESP32WifiCLI::isTelnetEnable() {
return false;
}

bool ESP32WifiCLI::isTelnetRunning() {
return false;
}
#endif

0 comments on commit 71854e9

Please sign in to comment.