summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/messagepacket.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-08-27 21:31:57 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-08-27 21:31:57 +0000
commit18fb3c2f6c84e3242df27a8686da95658584f7a8 (patch)
tree85b137147f5050862c33afc84bc5fa003606856b /protocols/Xfire/src/messagepacket.cpp
parent5d7ce04b05778bdd989b6744b300c0f65ed94624 (diff)
name conflicts resolved
git-svn-id: http://svn.miranda-ng.org/main/trunk@15050 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Xfire/src/messagepacket.cpp')
-rw-r--r--protocols/Xfire/src/messagepacket.cpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/protocols/Xfire/src/messagepacket.cpp b/protocols/Xfire/src/messagepacket.cpp
index 3fd0bb7274..d0024db9e3 100644
--- a/protocols/Xfire/src/messagepacket.cpp
+++ b/protocols/Xfire/src/messagepacket.cpp
@@ -33,44 +33,44 @@ namespace xfirelib
{
MessagePacket::MessagePacket()
{
- packetID = 133;
+ m_packetID = 133;
}
int MessagePacket::getPacketContent(char *packet)
{
- memcpy(packet, buf, bufLength);
- packetID = 2;
+ memcpy(packet, m_buf, m_bufLength);
+ m_packetID = 2;
return 150;
}
void MessagePacket::parseContent(char *buf, int length, int)
{
- bufLength = length;
+ m_bufLength = length;
XINFO(("Got IM\n"));
int index = 0;
- sid = new VariableValue();
- peermsg = new VariableValue();
- msgtype = new VariableValue();
+ m_sid = new VariableValue();
+ m_peermsg = new VariableValue();
+ m_msgtype = new VariableValue();
- index += sid->readName(buf, index);
+ index += m_sid->readName(buf, index);
index++; //ignore 03
- index += sid->readValue(buf, index, 16);
+ index += m_sid->readValue(buf, index, 16);
- index += peermsg->readName(buf, index);
+ index += m_peermsg->readName(buf, index);
index++;
index++;
- index += msgtype->readName(buf, index);
+ index += m_msgtype->readName(buf, index);
index++;
- index += msgtype->readValue(buf, index, 4);
+ index += m_msgtype->readValue(buf, index, 4);
- if (msgtype->getValue()[0] == 0) {
- imindex = new VariableValue();
- index += imindex->readName(buf, index);
+ if (m_msgtype->getValue()[0] == 0) {
+ m_imindex = new VariableValue();
+ index += m_imindex->readName(buf, index);
VariableValue messageTemp;
index++;//ignore 02
- index += imindex->readValue(buf, index, 4);
+ index += m_imindex->readValue(buf, index, 4);
index += messageTemp.readName(buf, index);
index++;
index += messageTemp.readValue(buf, index, 2);
@@ -78,15 +78,15 @@ namespace xfirelib
index = messageTemp.readValue(buf, index, messageLength);
for (int i = 0; i < messageTemp.getValueLength(); i++) {
- message += messageTemp.getValue()[i];
+ m_message += messageTemp.getValue()[i];
}
/*TODO: implement this and answer the package*/
}
- else if (msgtype->getValue()[0] == 1) {
+ else if (m_msgtype->getValue()[0] == 1) {
cout << "got ack for a message we have sent" << endl;
}
- else if (msgtype->getValue()[0] == 2) {
- memcpy(this->buf, buf, 150);
+ else if (m_msgtype->getValue()[0] == 2) {
+ memcpy(m_buf, buf, 150);
/*answer the packet*/
cout << "some auth magic stuff" << length << endl;
}