| 1952 | #endif // WEBSOCKET_DISABLED |
| 1953 | |
| 1954 | boolean RemoteDebug::wsIsConnected() { |
| 1955 | |
| 1956 | // Web socket is connected (RemoteDebugApp) |
| 1957 | |
| 1958 | #ifndef WEBSOCKET_DISABLED // For web socket server (app) |
| 1959 | return _connectedWS; |
| 1960 | #else |
| 1961 | return false; |
| 1962 | #endif |
| 1963 | } |
| 1964 | |
| 1965 | /////// Utilities |
| 1966 |
nothing calls this directly
no outgoing calls
no test coverage detected