summaryrefslogtreecommitdiff
path: root/protocols/Xfire/src/sendgameserverpacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Xfire/src/sendgameserverpacket.h')
-rw-r--r--protocols/Xfire/src/sendgameserverpacket.h27
1 files changed, 12 insertions, 15 deletions
diff --git a/protocols/Xfire/src/sendgameserverpacket.h b/protocols/Xfire/src/sendgameserverpacket.h
index d9f8dfc8b4..5e44b07e81 100644
--- a/protocols/Xfire/src/sendgameserverpacket.h
+++ b/protocols/Xfire/src/sendgameserverpacket.h
@@ -29,21 +29,18 @@
#define XFIRE_GAME_SERVER_PACKET 04
namespace xfirelib {
- class SendGameServerPacket : public XFireSendPacketContent {
- public:
- virtual ~SendGameServerPacket() { }
- int getPacketId() { return XFIRE_GAME_SERVER_PACKET; }
-
- int getPacketContent(char *buf);
- int getPacketAttributeCount() { return 3; }
- int getPacketSize() { return 1024; }
-
- long port;
- char ip[4];
- private:
-
- };
-
+ class SendGameServerPacket : public XFireSendPacketContent {
+ public:
+ virtual ~SendGameServerPacket() { }
+ int getPacketId() { return XFIRE_GAME_SERVER_PACKET; }
+
+ int getPacketContent(char *buf);
+ int getPacketAttributeCount() { return 3; }
+ int getPacketSize() { return 1024; }
+
+ long port;
+ char ip[4];
+ };
};
#endif //_SENDGAMESERVERPACKET_H_