mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-03 05:16:37 +00:00
Changed a bunch of function names to be shorter but still descriptive
This commit is contained in:
@@ -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> ¶ms) {
|
||||
|
||||
Reference in New Issue
Block a user