summaryrefslogtreecommitdiffstats
path: root/src/Common/RequestHandler.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-06-04 22:23:07 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-06-04 22:23:07 +0200
commit0b27c37fe95c6aced613d51a3624f8930a96ad3f (patch)
tree5cb92568f70fe9789e99633ec71048389efb7fa4 /src/Common/RequestHandler.cpp
parent50d92f64547c5c06851976ceab5ed631ec93f647 (diff)
downloadmad-0b27c37fe95c6aced613d51a3624f8930a96ad3f.tar
mad-0b27c37fe95c6aced613d51a3624f8930a96ad3f.zip
RequestHandler-Interface ?berarbeitet
Diffstat (limited to 'src/Common/RequestHandler.cpp')
-rw-r--r--src/Common/RequestHandler.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/Common/RequestHandler.cpp b/src/Common/RequestHandler.cpp
new file mode 100644
index 0000000..218155d
--- /dev/null
+++ b/src/Common/RequestHandler.cpp
@@ -0,0 +1,40 @@
+/*
+ * RequestHandler.cpp
+ *
+ * Copyright (C) 2009 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 "RequestHandler.h"
+#include "RequestManager.h"
+
+namespace Mad {
+namespace Common {
+
+Connection* RequestHandler::getConnection() const {
+ return RequestManager::get()->requestMap.getRequestInfo(this).first;
+}
+
+void RequestHandler::sendPacket(const XmlPacket &packet) {
+ std::pair<Connection*, boost::uint16_t> requestInfo = RequestManager::get()->requestMap.getRequestInfo(this);
+
+ if(!requestInfo.first)
+ return;
+
+ requestInfo.first->sendPacket(packet, requestInfo.second);
+}
+
+}
+}