summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/LinkLocal/LinkLocalRoster.h')
-rw-r--r--Swiften/LinkLocal/LinkLocalRoster.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/Swiften/LinkLocal/LinkLocalRoster.h b/Swiften/LinkLocal/LinkLocalRoster.h
index 128e39d..03ed2d5 100644
--- a/Swiften/LinkLocal/LinkLocalRoster.h
+++ b/Swiften/LinkLocal/LinkLocalRoster.h
@@ -28,21 +28,21 @@ namespace Swift {
int getPort(const JID&) const;
private:
- RosterItemPayload getRosterItem(const LinkLocalServiceID& service, const DNSSDService::ResolveResult& info) const;
- String getRosterName(const LinkLocalServiceID& service, const DNSSDService::ResolveResult& info) const;
- JID getJIDForService(const LinkLocalServiceID& service) const;
- boost::shared_ptr<Presence> getPresence(const LinkLocalServiceID& service, const DNSSDService::ResolveResult& info) const;
+ RosterItemPayload getRosterItem(const DNSSDServiceID& service, const DNSSDService::ResolveResult& info) const;
+ String getRosterName(const DNSSDServiceID& service, const DNSSDService::ResolveResult& info) const;
+ JID getJIDForService(const DNSSDServiceID& service) const;
+ boost::shared_ptr<Presence> getPresence(const DNSSDServiceID& service, const DNSSDService::ResolveResult& info) const;
void handleStopped(bool);
- void handleServiceRegistered(const LinkLocalServiceID& service);
- void handleServiceAdded(const LinkLocalServiceID&);
- void handleServiceRemoved(const LinkLocalServiceID&);
- void handleServiceResolved(const LinkLocalServiceID& service, const DNSSDService::ResolveResult& result);
+ void handleServiceRegistered(const DNSSDServiceID& service);
+ void handleServiceAdded(const DNSSDServiceID&);
+ void handleServiceRemoved(const DNSSDServiceID&);
+ void handleServiceResolved(const DNSSDServiceID& service, const DNSSDService::ResolveResult& result);
private:
boost::shared_ptr<DNSSDService> dnsSDService;
- boost::optional<LinkLocalServiceID> selfService;
- typedef std::map<LinkLocalServiceID, DNSSDService::ResolveResult> ServiceMap;
+ boost::optional<DNSSDServiceID> selfService;
+ typedef std::map<DNSSDServiceID, DNSSDService::ResolveResult> ServiceMap;
ServiceMap services;
};
}