summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/messageackpacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Xfire/src/messageackpacket.h')
-rw-r--r--protocols/Xfire/src/messageackpacket.h47
1 files changed, 21 insertions, 26 deletions
diff --git a/protocols/Xfire/src/messageackpacket.h b/protocols/Xfire/src/messageackpacket.h
index 35d0848fbd..a1bbfaaa5a 100644
--- a/protocols/Xfire/src/messageackpacket.h
+++ b/protocols/Xfire/src/messageackpacket.h
@@ -29,33 +29,28 @@
namespace xfirelib {
- /**
- * (Internal) Packet used to acknowledge a received message.
- * It is of no use to users of the library because it is already
- * sent by the Client.
- */
- class MessageACKPacket : public XFireSendPacketContent {
- public:
- MessageACKPacket();
- ~MessageACKPacket();
-
- XFirePacketContent* newPacket() { return new MessageACKPacket(); }
-
-
- int getPacketId() { return XFIRE_MESSAGE_ACK_ID; }
- int getPacketContent(char *buf);
- int getPacketAttributeCount() { return 2; }
- int getPacketSize() { return 1024; };
- void parseContent(char *buf, int length, int numberOfAtts);
-
- char sid[16];
- long imindex;
-
- private:
- };
-
+ /**
+ * (Internal) Packet used to acknowledge a received message.
+ * It is of no use to users of the library because it is already
+ * sent by the Client.
+ */
+ class MessageACKPacket : public XFireSendPacketContent {
+ public:
+ MessageACKPacket();
+ ~MessageACKPacket();
+
+ XFirePacketContent* newPacket() { return new MessageACKPacket(); }
+
+ int getPacketId() { return XFIRE_MESSAGE_ACK_ID; }
+ int getPacketContent(char *buf);
+ int getPacketAttributeCount() { return 2; }
+ int getPacketSize() { return 1024; };
+ void parseContent(char *buf, int length, int numberOfAtts);
+
+ char sid[16];
+ long imindex;
+ };
};
-
#endif