mumble/src/ServerResolverRecord.h
2020-01-07 03:09:22 +01:00

32 lines
820 B
C++

// 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_MUMBLE_SERVERRESOLVERRECORD_H_
#define MUMBLE_MUMBLE_SERVERRESOLVERRECORD_H_
#include <QtCore/QString>
#include <QtCore/QList>
#include "Net.h" // for HostAddress
class ServerResolverRecord {
public:
ServerResolverRecord();
ServerResolverRecord(QString hostname_, quint16 port_, qint64 priority_, QList<HostAddress> addresses_);
QString hostname();
quint16 port();
qint64 priority();
QList<HostAddress> addresses();
protected:
QString m_hostname;
quint16 m_port;
qint64 m_priority;
QList<HostAddress> m_addresses;
};
#endif