diff options
3 files changed, 41 insertions, 5 deletions
diff --git a/src/server/authserver/Server/BattlenetPackets/BattlenetPackets.h b/src/server/authserver/Server/BattlenetPackets/BattlenetPackets.h index 1ef5d2edf82..b7825a79c73 100644 --- a/src/server/authserver/Server/BattlenetPackets/BattlenetPackets.h +++ b/src/server/authserver/Server/BattlenetPackets/BattlenetPackets.h @@ -24,4 +24,6 @@ #include "FriendsPackets.h" #include "PresencePackets.h" +#include "SupportPackets.h" + #endif // BattlenetPackets_h__ diff --git a/src/server/authserver/Server/BattlenetPackets/PresencePackets.h b/src/server/authserver/Server/BattlenetPackets/PresencePackets.h index 56ebfc1ba43..baf2715f564 100644 --- a/src/server/authserver/Server/BattlenetPackets/PresencePackets.h +++ b/src/server/authserver/Server/BattlenetPackets/PresencePackets.h @@ -26,12 +26,12 @@ namespace Battlenet { enum Opcode { - CMSG_UPDATE_REQUEST = 0x0, - CMSG_STATISTIC_SUBSCRIBE = 0x2, + CMSG_UPDATE_REQUEST = 0x0, // Not implemented + CMSG_STATISTIC_SUBSCRIBE = 0x2, // Not implemented - SMSG_UPDATE_NOTIFY = 0x0, - SMSG_FIELD_SPEC_ANNOUNCE = 0x1, - SMSG_STATISTICS_UPDATE = 0x3 + SMSG_UPDATE_NOTIFY = 0x0, // Not implemented + SMSG_FIELD_SPEC_ANNOUNCE = 0x1, // Not implemented + SMSG_STATISTICS_UPDATE = 0x3 // Not implemented }; } } diff --git a/src/server/authserver/Server/BattlenetPackets/SupportPackets.h b/src/server/authserver/Server/BattlenetPackets/SupportPackets.h new file mode 100644 index 00000000000..4821ce7caa0 --- /dev/null +++ b/src/server/authserver/Server/BattlenetPackets/SupportPackets.h @@ -0,0 +1,34 @@ +/* + * 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 SupportPackets_h__ +#define SupportPackets_h__ + +#include "BattlenetPacketsBase.h" + +namespace Battlenet +{ + namespace Support + { + enum Opcode + { + CMSG_COMPLAINT_REQUEST = 0x0 // Not implemented + }; + } +} + +#endif // SupportPackets_h__ |