Core/Authserver: Added battle.net support channel opcode definitions

This commit is contained in:
Shauren
2014-10-05 12:24:38 +02:00
parent f4a62a178d
commit 92d22ee3f9
3 changed files with 41 additions and 5 deletions

View File

@@ -24,4 +24,6 @@
#include "FriendsPackets.h"
#include "PresencePackets.h"
#include "SupportPackets.h"
#endif // BattlenetPackets_h__

View File

@@ -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
};
}
}

View File

@@ -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__