diff options
Diffstat (limited to 'src/Common/Requests/FSInfoRequest.cpp')
-rw-r--r-- | src/Common/Requests/FSInfoRequest.cpp | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/src/Common/Requests/FSInfoRequest.cpp b/src/Common/Requests/FSInfoRequest.cpp deleted file mode 100644 index 7b5574d..0000000 --- a/src/Common/Requests/FSInfoRequest.cpp +++ /dev/null @@ -1,48 +0,0 @@ -/* - * FSInfoRequest.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 "FSInfoRequest.h" -#include <Net/Connection.h> - -#include <iostream> - -namespace Mad { -namespace Common { -namespace Requests { - -void FSInfoRequest::sendRequest(Net::Connection *connection, uint16_t requestId) { - XmlPacket packet; - packet.setType("FSInfo"); - - connection->send(packet.encode(requestId)); -} - -void FSInfoRequest::handlePacket(Net::Connection*, uint16_t, const Common::XmlPacket &packet) { - if(packet.getType() != "OK") { - finishWithError(Exception(Exception::UNEXPECTED_PACKET)); - return; // TODO Logging - } - - finish(packet); -} - -} -} -} - |