| 1984 | // TODO: make this for another chars not printable |
| 1985 | |
| 1986 | String RemoteDebug::expand(String string) { |
| 1987 | |
| 1988 | string.replace("\r", "\\r"); |
| 1989 | string.replace("\n", "\\n"); |
| 1990 | |
| 1991 | return string; |
| 1992 | } |
| 1993 | |
| 1994 | #ifdef ALPHA_VERSION // In test, not good yet |
| 1995 | // Send telnet commands (as used with password request) - 18/08/18 |
nothing calls this directly
no outgoing calls
no test coverage detected