diff options
author | Shauren <shauren.trinity@gmail.com> | 2014-10-05 13:05:36 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2014-10-05 13:05:36 +0200 |
commit | 24943462888ff80a84085d68f1eeba9931c5e110 (patch) | |
tree | edd574f22cb50cadeb3b858badb0dd703e114aff | |
parent | 4beef458f818b6d49b5fd34c29f5333a63fbd9c7 (diff) |
Core/Authserver: Added battle.net cache channel opcode definitions
3 files changed, 47 insertions, 2 deletions
diff --git a/src/server/authserver/Server/BattlenetPackets/AchievementPackets.h b/src/server/authserver/Server/BattlenetPackets/AchievementPackets.h index 99c55d8fdc2..69a03c7e16d 100644 --- a/src/server/authserver/Server/BattlenetPackets/AchievementPackets.h +++ b/src/server/authserver/Server/BattlenetPackets/AchievementPackets.h @@ -33,7 +33,7 @@ namespace Battlenet SMSG_DATA = 0x2, // Not implemented SMSG_CRITERIA_FLUSH_RESPONSE = 0x3, // Not implemented SMSG_ACHIEVEMENT_HANDLE_UPDATE = 0x4, // Not implemented - SMSG_CHANGE_TROPHY_CASE_RESULE = 0x6 // Not implemented + SMSG_CHANGE_TROPHY_CASE_RESULT = 0x6 // Not implemented }; } } diff --git a/src/server/authserver/Server/BattlenetPackets/BattlenetPackets.h b/src/server/authserver/Server/BattlenetPackets/BattlenetPackets.h index 80ff9b7ebdc..48e7a470ec5 100644 --- a/src/server/authserver/Server/BattlenetPackets/BattlenetPackets.h +++ b/src/server/authserver/Server/BattlenetPackets/BattlenetPackets.h @@ -23,8 +23,10 @@ #include "WoWRealmPackets.h" #include "FriendsPackets.h" #include "PresencePackets.h" - +//#include "ChatPackets.h" #include "SupportPackets.h" #include "AchievementPackets.h" +#include "CachePackets.h" +//#include "ProfilePackets.h" #endif // BattlenetPackets_h__ diff --git a/src/server/authserver/Server/BattlenetPackets/CachePackets.h b/src/server/authserver/Server/BattlenetPackets/CachePackets.h new file mode 100644 index 00000000000..6354201dc4c --- /dev/null +++ b/src/server/authserver/Server/BattlenetPackets/CachePackets.h @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> + * + * 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 2 of the License, or (at your + * option) 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 <http://www.gnu.org/licenses/>. + */ + +#ifndef CachePackets_h__ +#define CachePackets_h__ + +#include "BattlenetPacketsBase.h" + +namespace Battlenet +{ + namespace Cache + { + enum Opcode + { + CMSG_GATEWAY_LOOKUP_REQUEST = 0x2, // Not implemented + CMSG_CONNECT_REQUEST = 0x4, // Not implemented + CMSG_DATA_CHUNK = 0x7, // Not implemented + SMSG_GET_STREAM_ITEMS_REQUEST = 0x9, // Not implemented + + SMSG_GATEWAY_LOOKUP_RESPONSE = 0x3, // Not implemented + SMSG_CONNECT_RESPONSE = 0x4, // Not implemented + SMSG_PUBLISH_LIST_RESPONSE = 0x7, // Not implemented + SMSG_RESULT = 0x8, // Not implemented + SMSG_GET_STREAM_ITEMS_RESPONSE = 0x9 // Not implemented + }; + } +} + +#endif // CachePackets_h__ |