/* * Ascent MMORPG Server * Copyright (C) 2005-2007 Ascent Team * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #ifndef __LOGONOPCODES_H #define __LOGONOPCODES_H enum RealmListOpcodes { // Initialization of server/client connection... RCMSG_REGISTER_REALM = 1, RSMSG_REALM_REGISTERED = 2, // Upon client connect (for WS) RCMSG_REQUEST_SESSION = 3, RSMSG_SESSION_RESULT = 4, // Ping/Pong RCMSG_PING = 5, RSMSG_PONG = 6, // SQL Query Execute RCMSG_SQL_EXECUTE = 7, RCMSG_RELOAD_ACCOUNTS = 8, // Authentication RCMSG_AUTH_CHALLENGE = 9, RSMSG_AUTH_RESPONSE = 10, // Character->Account Transmission RSMSG_REQUEST_ACCOUNT_CHARACTER_MAPPING = 11, RCMSG_ACCOUNT_CHARACTER_MAPPING_REPLY = 12, // Update Character->Account Mapping RCMSG_UPDATE_CHARACTER_MAPPING_COUNT = 13, // count RMSG_COUNT = 14, }; #endif