summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-07-19 20:41:07 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-07-19 20:41:07 (GMT)
commita4f3cfa0e9932d123f115de76172128bc69cc255 (patch)
tree8d75961bb28e358b8f9ebbd1c33f3808cbe507f2 /Swiften/LinkLocal/AvahiDNSSDService.h
parent2fe12d374a18bf4c96f98d3e02c484e8307c1fe0 (diff)
downloadswift-a4f3cfa0e9932d123f115de76172128bc69cc255.zip
swift-a4f3cfa0e9932d123f115de76172128bc69cc255.tar.bz2
Added beginnings of AvahiDNSSDService.
Diffstat (limited to 'Swiften/LinkLocal/AvahiDNSSDService.h')
-rw-r--r--Swiften/LinkLocal/AvahiDNSSDService.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/Swiften/LinkLocal/AvahiDNSSDService.h b/Swiften/LinkLocal/AvahiDNSSDService.h
new file mode 100644
index 0000000..8d31e41
--- /dev/null
+++ b/Swiften/LinkLocal/AvahiDNSSDService.h
@@ -0,0 +1,55 @@
+#pragma once
+
+#include <map>
+#include <boost/enable_shared_from_this.hpp>
+#include <avahi-client/client.h>
+#include <avahi-client/lookup.h>
+#include <avahi-common/thread-watch.h>
+#include <avahi-common/watch.h>
+#include <avahi-common/malloc.h>
+#include <avahi-common/error.h>
+
+
+#include "Swiften/EventLoop/EventOwner.h"
+#include "Swiften/LinkLocal/DNSSDService.h"
+
+namespace Swift {
+ class AvahiDNSSDService : public DNSSDService, public EventOwner, public boost::enable_shared_from_this<AvahiDNSSDService> {
+ public:
+ AvahiDNSSDService();
+ ~AvahiDNSSDService();
+
+ virtual void start();
+ virtual void stop();
+
+ virtual void registerService(const String& name, int port, const LinkLocalServiceInfo&);
+ virtual void updateService(const LinkLocalServiceInfo&);
+ virtual void unregisterService();
+
+ virtual void startResolvingService(const Service&);
+ virtual void stopResolvingService(const Service&);
+
+ virtual void resolveHostname(const String& hostname, int interfaceIndex = 0);
+
+ private:
+ static void handleServiceDiscoveredGlobal(AvahiServiceBrowser *b, AvahiIfIndex networkInterface, AvahiProtocol protocol, AvahiBrowserEvent event, const char *name, const char *type, const char *domain, AvahiLookupResultFlags flags, void* userdata) {
+ static_cast<AvahiDNSSDService*>(userdata)->handleServiceDiscovered(b, networkInterface, protocol, event, name, type, domain, flags);
+ }
+ void handleServiceDiscovered(AvahiServiceBrowser *b, AvahiIfIndex interface, AvahiProtocol protocol, AvahiBrowserEvent event, const char *name, const char *type, const char *domain, AVAHI_GCC_UNUSED AvahiLookupResultFlags flags);
+
+ static void handleServiceResolvedGlobal(AvahiServiceResolver *r, AvahiIfIndex interfaceIndex, AvahiProtocol protocol, AvahiResolverEvent event, const char *name, const char *type, const char *domain, const char *hostname, const AvahiAddress *address, uint16_t port, AvahiStringList *txt, AvahiLookupResultFlags flags, void* userdata) {
+ static_cast<AvahiDNSSDService*>(userdata)->handleServiceResolved(r, interfaceIndex, protocol, event, name, type, domain, hostname, address, port, txt, flags);
+ }
+ void handleServiceResolved(AvahiServiceResolver *r, AvahiIfIndex interface, AvahiProtocol protocol, AvahiResolverEvent event, const char *name, const char *type, const char *domain, const char *hostname, const AvahiAddress *address, uint16_t port, AvahiStringList *txt, AvahiLookupResultFlags flags);
+
+
+ private:
+ AvahiClient* client;
+ AvahiThreadedPoll* threadedPoll;
+ AvahiServiceBrowser* serviceBrowser;
+ typedef std::map<Service, AvahiServiceResolver*> ServiceResolverMap;
+ ServiceResolverMap serviceResolvers;
+ typedef std::map<String, HostAddress> HostnameAddressMap;
+ HostnameAddressMap hostnameAddresses;
+ };
+}