-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeermanager.h
45 lines (35 loc) · 891 Bytes
/
peermanager.h
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
#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);
QByteArray userName() const;
void startBroadcasting();
bool isLocalHostAddress(const QHostAddress &address);
bool sendDatagram(const QHostAddress &address);
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;
QByteArray username;
int serverPort;
};
#endif // PEERMANAGER_H