| 88 | int telnetSock = -1; |
| 89 | |
| 90 | bool initClientMutex() { |
| 91 | if (clientStateMutex != nullptr) return true; |
| 92 | clientStateMutex = xSemaphoreCreateMutex(); |
| 93 | return clientStateMutex != nullptr; |
| 94 | } |
| 95 | |
| 96 | const char *getProtocolName(ClientProtocol protocol) { |
| 97 | switch (protocol) { |
no outgoing calls
no test coverage detected