blob: 446feb8c499792a248f5b1742b9b1cfacd448cb9 (
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
42
43
44
45
46
47
48
49
50
|
#pragma once
#include "Swiften/Base/String.h"
#include "Swiften/Network/HostAddress.h"
#include "Swiften/LinkLocal/LinkLocalServiceInfo.h"
namespace Swift {
class LinkLocalService {
public:
LinkLocalService();
const String& getName() const {
return name;
}
void setName(const String& n) {
name = n;
}
const String& getHostname() const {
return hostname;
}
void setHostname(const String& h) {
hostname = h;
}
const HostAddress& getAddress() const {
return address;
}
void setAddress(const HostAddress& a) {
address = a;
}
const LinkLocalServiceInfo& getInfo() const {
return info;
}
void setInfo(const LinkLocalServiceInfo& i) {
info = i;
}
private:
String name;
String hostname;
LinkLocalServiceInfo info;
HostAddress address;
};
}
|