blob: af2dc1e47203ce963c8464361947dd7ff35d2201 (
plain) (
blame)
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
|
// SPDX-FileCopyrightText: 2019 Jeremy Lainé <jeremy.laine@m4x.org>
//
// SPDX-License-Identifier: LGPL-2.1-or-later
#ifndef QXMPPCALLMANAGER_P_H
#define QXMPPCALLMANAGER_P_H
#include "QXmppCall.h"
#include <QHostAddress>
#include <QList>
class QXmppCallManager;
// W A R N I N G
// -------------
//
// This file is not part of the QXmpp API.
// This header file may change from version to version without notice,
// or even be removed.
//
// We mean it.
//
class QXmppCallManagerPrivate
{
public:
QXmppCallManagerPrivate(QXmppCallManager *qq);
QXmppCall *findCall(const QString &sid) const;
QXmppCall *findCall(const QString &sid, QXmppCall::Direction direction) const;
QList<QXmppCall *> calls;
QList<QPair<QHostAddress, quint16>> stunServers;
QHostAddress turnHost;
quint16 turnPort;
QString turnUser;
QString turnPassword;
private:
QXmppCallManager *q;
};
#endif
|