summaryrefslogtreecommitdiffstats
blob: 965a8450739e538bb878519fe2ab29dab1ca4530 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include "Swiften/LinkLocal/BonjourQuery.h"
#include "Swiften/LinkLocal/BonjourQuerier.h"

namespace Swift {

BonjourQuery::BonjourQuery(boost::shared_ptr<BonjourQuerier> q) : querier(q), sdRef(0) {
}

BonjourQuery::~BonjourQuery() {
	DNSServiceRefDeallocate(sdRef);
}

void BonjourQuery::processResult() {
	std::cout << "Process result" << std::endl;
	boost::lock_guard<boost::mutex> lock(sdRefMutex);
	std::cout << "DNSSDServiceProcessResult" << std::endl;
	DNSServiceProcessResult(sdRef);
}

int BonjourQuery::getSocketID() const {
	boost::lock_guard<boost::mutex> lock(sdRefMutex);
	return DNSServiceRefSockFD(sdRef);
}

void BonjourQuery::run() {
	querier->addRunningQuery(shared_from_this());
}

void BonjourQuery::finish() {
	querier->removeRunningQuery(shared_from_this());
}

}