Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ServerAddress.h « src - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d8430bba48018a5b1d57a9613bb020f63cb834a (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
// Copyright 2005-2020 The Mumble Developers. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.

#ifndef MUMBLE_SERVERADDRESS_H_
#define MUMBLE_SERVERADDRESS_H_

#include <QtCore/QString>

#include "HostAddress.h"

/// ServerAddress represents a server
/// address consisting of a HostAddress
/// and a port.
struct ServerAddress {
	HostAddress host;
	unsigned short port;

	/// Construct a default ServerAddress.
	/// The default ServerAddress value is considered
	/// invalid per the |isValid| method.
	ServerAddress();

	/// Construct a ServerAddress pointing to |host_| and |port_|.
	ServerAddress(HostAddress host_, unsigned short port_);

	/// Check whether the ServerAddress is valid.
	/// A ServerAddress is valid if it has a valid |host|
	/// and if its |port| > 0.
	bool isValid() const;
};

/// Check whether the ServerAddresses |lhs| and |rhs| are equal.
bool operator==(const ServerAddress &lhs, const ServerAddress &rhs);

/// Check whether the ServerAddresses |lhs| and |rhs| are not equal.
bool operator!=(const ServerAddress &lhs, const ServerAddress &rhs);

/// Check whether ServerAddress |lhs| should be sorted before |rhs|.
/// This is implemented such that ServerAddress can be used in QMap.
bool operator<(const ServerAddress &lhs, const ServerAddress &rhs);

/// Implementation of qHash for ServerAddress, such that ServerAddress
/// can be used as a key in QHash, QMap, etc.
uint qHash(const ServerAddress &key);

#endif