nextcloud-desktop/shell_integration/testclient/socketclient.cpp

23 lines
522 B
C++
Raw Normal View History

2014-07-02 12:10:22 +04:00
#include "socketclient.h"
SocketClient::SocketClient(QObject *parent) :
QObject(parent)
, sock(new QLocalSocket(this))
{
QString sockAddr;
#ifdef Q_OS_UNIX
sockAddr = QDir::homePath() + QLatin1String("/.local/share/data/ownCloud/");
#else
sockAddr = QLatin1String("\\\\.\\pipe\\ownCloud");
#endif
sock->connectToServer(sockAddr);
sock->open(QIODevice::ReadWrite);
connect(sock, SIGNAL(readyRead()), SLOT(writeData()));
}
void SocketClient::writeData()
{
qDebug() << sock->readAll();
}