aboutsummaryrefslogtreecommitdiff
path: root/src/unixdomainsocket.h
diff options
context:
space:
mode:
authorvovanec <vovanec@90c681e8-e032-0410-971d-27865f9a5e38>2008-02-07 13:36:34 +0000
committervovanec <vovanec@90c681e8-e032-0410-971d-27865f9a5e38>2008-02-07 13:36:34 +0000
commit06d1877811fa6aa97dddc0e03bcde4e766928c87 (patch)
treec25462d0e58c3d58c728664440412bf4f16a49ec /src/unixdomainsocket.h
parent3f6b60f23c44a8ba8dd97ca6f41a16e2af7ef2f7 (diff)
downloadqmmp-06d1877811fa6aa97dddc0e03bcde4e766928c87.tar.gz
qmmp-06d1877811fa6aa97dddc0e03bcde4e766928c87.tar.bz2
qmmp-06d1877811fa6aa97dddc0e03bcde4e766928c87.zip
new directory structure
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@232 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/unixdomainsocket.h')
-rw-r--r--src/unixdomainsocket.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/unixdomainsocket.h b/src/unixdomainsocket.h
deleted file mode 100644
index 7538e685a..000000000
--- a/src/unixdomainsocket.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#ifndef UNIXDOMAINSOCKET_H
-#define UNIXDOMAINSOCKET_H
-
-#include <QUdpSocket>
-#include <sys/socket.h>
-#include <netinet/in.h>
-#include <sys/types.h>
-#include <linux/un.h>
-
-
-/*!
- * UnixDomainSocket class is a wrapper around the unix domain sockets implementation.
- * Used for QMMP interprocess communications.
- * @author Vladimir Kuznetsov <vovanec@gmail.com>
- */
-class UnixDomainSocket : public QUdpSocket
-{
-Q_OBJECT
-public:
- UnixDomainSocket(QObject * parent = 0 );
-
- /*!
- * Try to bind socket to \b path. Returns \b true on success, otherwise \b false
- */
- bool bind(const QString& file);
-
- /*!
- * Checks if socket at \b path path is alive( i.e. connectable).
- */
- bool alive(const QString& path);
- ~UnixDomainSocket();
-
-public slots:
- /*!
- * Sends the datagram \b command to the socket at \b path path.
- */
- void writeDatagram(const char* command,const QString& path);
-private:
- unsigned int _s;
- struct sockaddr_un _local;
- bool _binded;
-};
-
-
-#endif
-