mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-05-06 22:49:44 +00:00
32 lines
578 B
C++
32 lines
578 B
C++
#ifndef SERVER_CP_H
|
|
#define SERVER_CP_H
|
|
#include "clientprotocol_global.h"
|
|
#include "clientprotocol.h"
|
|
|
|
#include <QTcpServer>
|
|
|
|
namespace ClientProtocol {
|
|
|
|
|
|
class CLIENTPROTOCOLSHARED_EXPORT Server : public QTcpServer
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
Package _downloadPackage;
|
|
|
|
bool parsePackage(const Package &pkg, QTcpSocket * sender);
|
|
|
|
private slots:
|
|
void avelableBytes();
|
|
void handleIncommingConnection();
|
|
|
|
public:
|
|
explicit Server(QObject * ptr = nullptr);
|
|
~Server() override;
|
|
bool run(const QString& ip, unsigned short port);
|
|
|
|
};
|
|
|
|
}
|
|
#endif // SERVER_CP_H
|