summaryrefslogtreecommitdiffstats
path: root/src/Net/Packet.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2008-09-10 21:46:33 +0200
committerMatthias Schiffer <matthias@gamezock.de>2008-09-10 21:46:33 +0200
commitc4c91c7cbc6c413e59f05be88e6bd1c6bc83679d (patch)
treecd6148bbf037eb323bbfe6bd40a697ea0bbd2d17 /src/Net/Packet.cpp
parent55a6045504bee4bf425870b6b427abd5240e7303 (diff)
downloadmad-c4c91c7cbc6c413e59f05be88e6bd1c6bc83679d.tar
mad-c4c91c7cbc6c413e59f05be88e6bd1c6bc83679d.zip
Server-Status-Abfrage zeigt jetzt uptime an
Diffstat (limited to 'src/Net/Packet.cpp')
-rw-r--r--src/Net/Packet.cpp50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/Net/Packet.cpp b/src/Net/Packet.cpp
new file mode 100644
index 0000000..9e05f24
--- /dev/null
+++ b/src/Net/Packet.cpp
@@ -0,0 +1,50 @@
+/*
+ * Packet.cpp
+ *
+ * Copyright (C) 2008 Matthias Schiffer <matthias@gamezock.de>
+ *
+ * This program is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "Packet.h"
+
+namespace Mad {
+namespace Net {
+
+Packet::Packet(Type type, uint16_t requestId, const void *data, uint16_t length) {
+ rawData = (Data*)std::malloc(sizeof(Data)+length);
+
+ rawData->type = htons(type);
+ rawData->requestId = htons(requestId);
+ rawData->reserved = 0;
+ rawData->length = htons(length);
+
+ if(length)
+ std::memcpy(rawData->data, data, length);
+}
+
+Packet& Packet::operator=(const Packet &p) {
+ if(&p == this)
+ return *this;
+
+ std::free(rawData);
+
+ rawData = (Data*)std::malloc(p.getRawDataLength());
+ std::memcpy(rawData, p.rawData, p.getRawDataLength());
+
+ return *this;
+}
+
+}
+}