(status byte)
| 253 | } |
| 254 | |
| 255 | func CommandStatusToString(status byte) string { |
| 256 | if str, ok := commandStatusToString[status]; ok { |
| 257 | return str |
| 258 | } |
| 259 | return "UNKNOWN" |
| 260 | } |
| 261 | |
| 262 | func CachingSha2PasswordToString(status CachingSha2Password) string { |
| 263 | if str, ok := cachingSha2PasswordToString[status]; ok { |
no outgoing calls
no test coverage detected