summaryrefslogtreecommitdiffstats
path: root/src/Daemon/Requests/IdentifyRequest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Daemon/Requests/IdentifyRequest.cpp')
-rw-r--r--src/Daemon/Requests/IdentifyRequest.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/Daemon/Requests/IdentifyRequest.cpp b/src/Daemon/Requests/IdentifyRequest.cpp
index e8b6082..6334f00 100644
--- a/src/Daemon/Requests/IdentifyRequest.cpp
+++ b/src/Daemon/Requests/IdentifyRequest.cpp
@@ -19,22 +19,27 @@
#include "IdentifyRequest.h"
#include <Net/Connection.h>
+#include <Common/XmlPacket.h>
namespace Mad {
namespace Daemon {
namespace Requests {
void IdentifyRequest::sendRequest(Net::Connection *connection, uint16_t requestId) {
- connection->send(Net::Packet(Net::Packet::IDENTIFY, requestId, hostname.c_str(), hostname.length()));
+ Common::XmlPacket packet;
+ packet.setType("Identify");
+ packet.add("hostname", hostname);
+
+ connection->send(packet.encode(requestId));
}
-void IdentifyRequest::handlePacket(Net::Connection*, const Net::Packet &packet) {
- if(packet.getType() != Net::Packet::OK) {
+void IdentifyRequest::handlePacket(Net::Connection*, uint16_t, const Common::XmlPacket &packet) {
+ if(packet.getType() != "OK") {
finishWithError(Common::Exception(Common::Exception::UNEXPECTED_PACKET));
return; // TODO Logging
}
- finish();
+ finish(packet);
}
}