summaryrefslogtreecommitdiffstats
blob: ca5ba17dc86074dbf7c79fd27790c884ff50fe41 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#pragma once

#include "Swiften/Base/String.h"

namespace Swift {
	class LinkLocalServiceID {
		public:
			static const String PresenceServiceType;

			LinkLocalServiceID(
				const String& name, 
				const String& type, 
				const String& domain = PresenceServiceType, 
				int networkInterface = 0) : 
					name(name), 
					type(type), 
					domain(domain), 
					networkInterface(networkInterface) {
			}

			bool operator==(const LinkLocalServiceID& o) const {
				return name == o.name && type == o.type && domain == o.domain && (networkInterface != 0 && o.networkInterface != 0 ? networkInterface == o.networkInterface : true);
			}

			bool operator<(const LinkLocalServiceID& o) const {
				if (o.name == name) {
					if (o.type == type) {
						if (o.domain == domain) {
							return networkInterface < o.networkInterface;
						}
						else {
							return domain < o.domain;
						}
					}
					else {
						return type < o.type;
					}
				}
				else {
					return o.name < name;
				}
			}

			const String& getName() const {
				return name;
			}

			const String& getType() const {
				return type;
			}

			const String& getDomain() const {
				return domain;
			}

			int getNetworkInterfaceID() const {
				return networkInterface;
			}

		private:
			String name;
			String type;
			String domain;
			int networkInterface;
	};
}