summaryrefslogtreecommitdiffstats
path: root/source/packets/cPacket_TimeUpdate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/packets/cPacket_TimeUpdate.cpp')
-rw-r--r--source/packets/cPacket_TimeUpdate.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/source/packets/cPacket_TimeUpdate.cpp b/source/packets/cPacket_TimeUpdate.cpp
new file mode 100644
index 000000000..09a9ca66a
--- /dev/null
+++ b/source/packets/cPacket_TimeUpdate.cpp
@@ -0,0 +1,22 @@
+#include "cPacket_TimeUpdate.h"
+
+bool cPacket_TimeUpdate::Parse(cSocket & a_Socket)
+{
+ m_Socket = a_Socket;
+ if( !ReadLong(m_Time) ) return false;
+ return true;
+}
+
+bool cPacket_TimeUpdate::Send(cSocket & a_Socket)
+{
+ unsigned int TotalSize = c_Size;
+ char* Message = new char[TotalSize];
+
+ unsigned int i = 0;
+ AppendByte ( (char)m_PacketID, Message, i );
+ AppendLong ( m_Time, Message, i );
+
+ bool RetVal = !cSocket::IsSocketError( SendData( a_Socket, Message, TotalSize, 0 ) );
+ delete [] Message;
+ return RetVal;
+} \ No newline at end of file