summaryrefslogtreecommitdiffstats
blob: 2c62307b20bb335494d470de460d644b4e588e75 (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
34
35
36
37
38
39
40
41
#pragma once

#include "Swiften/Base/String.h"
#include "Swiften/Network/HostAddress.h"
#include "Swiften/LinkLocal/DNSSD/DNSSDServiceID.h"
#include "Swiften/LinkLocal/LinkLocalServiceInfo.h"

namespace Swift {
	class LinkLocalService {
		public:
			LinkLocalService(
					const DNSSDServiceID& id,
					const DNSSDService::ResolveResult& info) :
						id(id),
						info(info) {}

			const DNSSDServiceID& getID() const {
				return id;
			}

			const String& getName() const {
				return id.getName();
			}

			int getPort() const {
				return info.port;
			}

			const String& getHostname() const {
				return info.host;
			}

			const LinkLocalServiceInfo& getInfo() const {
				return info.info;
			}

		private:
			DNSSDServiceID id;
			DNSSDService::ResolveResult info;
	};
}