qt6windows7/examples/network/network-chat/peermanager.h

48 lines
957 B
C
Raw Normal View History

2023-10-30 06:33:08 +08:00
// 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:
2023-11-02 05:23:55 +08:00
explicit PeerManager(Client *client);
2023-10-30 06:33:08 +08:00
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();
2023-11-02 05:23:55 +08:00
Client *client = nullptr;
2023-10-30 06:33:08 +08:00
QList<QHostAddress> broadcastAddresses;
QList<QHostAddress> ipAddresses;
QUdpSocket broadcastSocket;
QTimer broadcastTimer;
QString username;
2023-11-02 05:23:55 +08:00
int serverPort = 0;
2023-10-30 06:33:08 +08:00
};
#endif