Core/Authserver: Added friend related battle.net opcode definitions

This commit is contained in:
Shauren
2014-10-05 04:09:06 +02:00
parent 8abdede17d
commit b4a6aa1de0
3 changed files with 61 additions and 1 deletions

View File

@@ -21,5 +21,6 @@
#include "AuthenticationPackets.h"
#include "ConnectionPackets.h"
#include "WoWRealmPackets.h"
#include "FriendsPackets.h"
#endif // BattlenetPackets_h__

View File

@@ -37,7 +37,7 @@ namespace Battlenet
AUTHENTICATION = 0,
CONNECTION = 1,
WOWREALM = 2,
FRIEND = 3,
FRIENDS = 3,
PRESENCE = 4,
CHAT = 5,
SUPPORT = 7,

View File

@@ -0,0 +1,59 @@
/*
* 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 FriendsPackets_h__
#define FriendsPackets_h__
#include "BattlenetPacketsBase.h"
namespace Battlenet
{
namespace Friends
{
enum Opcode
{
CMSG_FRIEND_INVITE = 0x01, // Not implemented
CMSG_FRIEND_INVITE_RESPONSE = 0x02, // Not implemented
CMSG_FRIEND_REMOVE = 0x04, // Not implemented
CMSG_FRIEND_NOTE = 0x05, // Not implemented
CMSG_TOONS_OF_FRIEND_REQUEST = 0x06, // Not implemented
CMSG_BLOCK_ADD = 0x08, // Not implemented
CMSG_BLOCK_REMOVE = 0x0A, // Not implemented
CMSG_GET_FRIENDS_OF_FRIEND = 0x0B, // Not implemented
CMSG_GET_SOCIAL_NETWORK_FRIENDS = 0x0D, // Not implemented
CMSG_SOCIAL_NETWORK_CONNECT = 0x0F, // Not implemented
CMSG_SOCIAL_NETWORK_DISCONNECT = 0x11, // Not implemented
CMSG_SOCIAL_NETWORK_CHECK_CONNECTED = 0x13, // Not implemented
CMSG_SEND_RID_FRIEND_INVITE = 0x16, // Not implemented
SMSG_FRIEND_INVITE_NOTIFY = 0x01, // Not implemented
SMSG_FRIEND_INVITE_RESULT = 0x03, // Not implemented
SMSG_TOONS_OF_FRIEND_NOTIFY = 0x06, // Not implemented
SMSG_BLOCK_INVITE_NOTIFY = 0x07, // Not implemented
SMSG_BLOCK_ADD_FAILURE = 0x09, // Not implemented
SMSG_FRIENDS_OF_FRIEND = 0x0C, // Not implemented
SMSG_SOCIAL_NETWORK_FRIENDS = 0x0E, // Not implemented
SMSG_SOCIAL_NETWORK_CONNECT_RESULT = 0x10, // Not implemented
SMSG_SOCIAL_NETWORK_DISCONNECT_RESULT = 0x12, // Not implemented
SMSG_SOCIAL_NETWORK_CHECK_CONNECTED_RESULT = 0x14, // Not implemented
SMSG_MAX_FRIENDS_NOTIFY = 0x15, // Not implemented
SMSG_FRIENDS_LIST_NOTIFY_3 = 0x18 // Not implemented
};
}
}
#endif // FriendsPackets_h__