summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/otherloginpacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Xfire/src/otherloginpacket.h')
-rw-r--r--protocols/Xfire/src/otherloginpacket.h21
1 files changed, 10 insertions, 11 deletions
diff --git a/protocols/Xfire/src/otherloginpacket.h b/protocols/Xfire/src/otherloginpacket.h
index 4f1168e427..19f2321399 100644
--- a/protocols/Xfire/src/otherloginpacket.h
+++ b/protocols/Xfire/src/otherloginpacket.h
@@ -30,17 +30,16 @@
namespace xfirelib {
- class OtherLoginPacket : public XFireRecvPacketContent {
- public:
- XFirePacketContent* newPacket() { return new OtherLoginPacket(); }
-
- int getPacketId() { return XFIRE_OTHER_LOGIN; }
- int getPacketContent(char *buf) { return 0; }
- int getPacketAttributeCount() { return 0; };
- int getPacketSize() { return 1024; };
- void parseContent(char *buf, int length, int numberOfAtts);
- };
+ class OtherLoginPacket : public XFireRecvPacketContent {
+ public:
+ XFirePacketContent* newPacket() { return new OtherLoginPacket(); }
+
+ int getPacketId() { return XFIRE_OTHER_LOGIN; }
+ int getPacketContent(char*) { return 0; }
+ int getPacketAttributeCount() { return 0; };
+ int getPacketSize() { return 1024; };
+ void parseContent(char *buf, int length, int numberOfAtts);
+ };
};
-
#endif