mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-27 14:38:28 +08:00
48 lines
934 B
C
48 lines
934 B
C
|
// Copyright (C) 2016 The Qt Company Ltd.
|
||
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
||
|
#ifndef PEERMANAGER_H
|
||
|
#define PEERMANAGER_H
|
||
|
|
||
|
#include <QByteArray>
|
||
|
#include <QList>
|
||
|
#include <QObject>
|
||
|
#include <QTimer>
|
||
|
#include <QUdpSocket>
|
||
|
|
||
|
class Client;
|
||
|
class Connection;
|
||
|
|
||
|
class PeerManager : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
PeerManager(Client *client);
|
||
|
|
||
|
void setServerPort(int port);
|
||
|
QString userName() const;
|
||
|
void startBroadcasting();
|
||
|
bool isLocalHostAddress(const QHostAddress &address) const;
|
||
|
|
||
|
signals:
|
||
|
void newConnection(Connection *connection);
|
||
|
|
||
|
private slots:
|
||
|
void sendBroadcastDatagram();
|
||
|
void readBroadcastDatagram();
|
||
|
|
||
|
private:
|
||
|
void updateAddresses();
|
||
|
|
||
|
Client *client;
|
||
|
QList<QHostAddress> broadcastAddresses;
|
||
|
QList<QHostAddress> ipAddresses;
|
||
|
QUdpSocket broadcastSocket;
|
||
|
QTimer broadcastTimer;
|
||
|
QString username;
|
||
|
int serverPort;
|
||
|
};
|
||
|
|
||
|
#endif
|