connection_context: remove "state_" prefix from state names

It's redundant and makes it easier to print them in columns
release-v0.13
moneromooo-monero 6 years ago
parent cd22cb807a
commit 9cc0d4220f
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -67,15 +67,15 @@ namespace cryptonote
switch (s) switch (s)
{ {
case cryptonote_connection_context::state_before_handshake: case cryptonote_connection_context::state_before_handshake:
return "state_before_handshake"; return "before_handshake";
case cryptonote_connection_context::state_synchronizing: case cryptonote_connection_context::state_synchronizing:
return "state_synchronizing"; return "synchronizing";
case cryptonote_connection_context::state_standby: case cryptonote_connection_context::state_standby:
return "state_standby"; return "standby";
case cryptonote_connection_context::state_idle: case cryptonote_connection_context::state_idle:
return "state_idle"; return "idle";
case cryptonote_connection_context::state_normal: case cryptonote_connection_context::state_normal:
return "state_normal"; return "normal";
default: default:
return "unknown"; return "unknown";
} }

Loading…
Cancel
Save