summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-07-26 15:06:11 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-07-26 15:17:35 (GMT)
commite7ab68e8daf120d932d9eefc9053e9e064ca29af (patch)
tree82d7b1c6073b69c8dc91f0d72f5a32a8e9a2a67c /Swiften/LinkLocal/DNSSD/DNSSDResolveServiceQuery.h
parent26d623d3cfd8937fb52acf76ef33d230f5010538 (diff)
downloadswift-e7ab68e8daf120d932d9eefc9053e9e064ca29af.zip
swift-e7ab68e8daf120d932d9eefc9053e9e064ca29af.tar.bz2
Make DNSSD independent of LinkLocalServiceInfo.
Diffstat (limited to 'Swiften/LinkLocal/DNSSD/DNSSDResolveServiceQuery.h')
-rw-r--r--Swiften/LinkLocal/DNSSD/DNSSDResolveServiceQuery.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/Swiften/LinkLocal/DNSSD/DNSSDResolveServiceQuery.h b/Swiften/LinkLocal/DNSSD/DNSSDResolveServiceQuery.h
index f79b537..217e396 100644
--- a/Swiften/LinkLocal/DNSSD/DNSSDResolveServiceQuery.h
+++ b/Swiften/LinkLocal/DNSSD/DNSSDResolveServiceQuery.h
@@ -4,19 +4,18 @@
#include <boost/optional.hpp>
#include "Swiften/LinkLocal/DNSSD/DNSSDServiceID.h"
-#include "Swiften/LinkLocal/LinkLocalServiceInfo.h"
+#include "Swiften/Base/ByteArray.h"
namespace Swift {
class DNSSDResolveServiceQuery {
public:
struct Result {
- Result(const String& fullName, const String& host, int port,
- const LinkLocalServiceInfo& info) :
+ Result(const String& fullName, const String& host, int port, const ByteArray& info) :
fullName(fullName), host(host), port(port), info(info) {}
String fullName;
String host;
int port;
- LinkLocalServiceInfo info;
+ ByteArray info;
};
virtual ~DNSSDResolveServiceQuery();