(status byte)
| 246 | } |
| 247 | |
| 248 | func AuthStatusToString(status byte) string { |
| 249 | if str, ok := authStatusToString[status]; ok { |
| 250 | return str |
| 251 | } |
| 252 | return "UNKNOWN" |
| 253 | } |
| 254 | |
| 255 | func CommandStatusToString(status byte) string { |
| 256 | if str, ok := commandStatusToString[status]; ok { |
no outgoing calls
no test coverage detected