mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-24 10:56:38 +01:00
Core/Authserver: Added battle.net support channel opcode definitions
This commit is contained in:
@@ -24,4 +24,6 @@
|
||||
#include "FriendsPackets.h"
|
||||
#include "PresencePackets.h"
|
||||
|
||||
#include "SupportPackets.h"
|
||||
|
||||
#endif // BattlenetPackets_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
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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__
|
||||
Reference in New Issue
Block a user