Albert S
47874b3706
Crashes were observed, faulting in libQtNetwork. Those were rather rare. We also have no traces. Probably depends on some order signal/slots were processed. Remove shared states between connections, such as the IPCPreviewWorker and socket instance in IPCServer.
24 líneas
417 B
C++
24 líneas
417 B
C++
#ifndef IPCSERVER_H
|
|
#define IPCSERVER_H
|
|
#include <QString>
|
|
#include <QLocalServer>
|
|
#include "ipc.h"
|
|
#include "filesaver.h"
|
|
#include "ipcpreviewworker.h"
|
|
|
|
class IpcServer : public QObject
|
|
{
|
|
Q_OBJECT
|
|
private:
|
|
QLocalServer spawningServer;
|
|
SaveFileResult addFile(QString file);
|
|
private slots:
|
|
void spawnerNewConnection();
|
|
|
|
public:
|
|
IpcServer();
|
|
bool startSpawner(QString socketPath);
|
|
};
|
|
|
|
#endif // IPCSERVER_H
|