blob: 661630395c44db6e7b4d6b5255806b520223aebe (
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/LinkLocalServiceID.h"
#include "Swiften/LinkLocal/LinkLocalServiceInfo.h"
namespace Swift {
class LinkLocalService {
public:
LinkLocalService(
const LinkLocalServiceID& id,
const DNSSDService::ResolveResult& info) :
id(id),
info(info) {}
const LinkLocalServiceID& 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:
LinkLocalServiceID id;
DNSSDService::ResolveResult info;
};
}
|