From c4c91c7cbc6c413e59f05be88e6bd1c6bc83679d Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 10 Sep 2008 21:46:33 +0200 Subject: Server-Status-Abfrage zeigt jetzt uptime an --- src/Net/Packet.cpp | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/Net/Packet.cpp (limited to 'src/Net/Packet.cpp') 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 + * + * 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 . + */ + +#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; +} + +} +} -- cgit v1.2.3