Changed a bunch of function names to be shorter but still descriptive

This commit is contained in:
KimLS
2014-08-02 14:31:39 -07:00
parent ae30d8b257
commit 379ecc655c
7 changed files with 22 additions and 24 deletions
+4 -4
View File
@@ -46,10 +46,10 @@ void RemoteCallResponse(const std::string &connection_id, const std::string &req
}
void register_remote_call_handlers() {
remote_call_methods["World::ListZones"] = handle_rc_list_zones;
remote_call_methods["World::GetZoneDetails"] = handle_rc_get_zone_info;
remote_call_methods["Zone::Subscribe"] = handle_rc_relay;
remote_call_methods["Zone::Unsubscribe"] = handle_rc_relay;
remote_call_methods["World.ListZones"] = handle_rc_list_zones;
remote_call_methods["World.GetZoneDetails"] = handle_rc_get_zone_info;
remote_call_methods["Zone.Subscribe"] = handle_rc_relay;
remote_call_methods["Zone.Unsubscribe"] = handle_rc_relay;
}
void handle_rc_list_zones(const std::string &method, const std::string &connection_id, const std::string &request_id, const std::vector<std::string> &params) {