summaryrefslogtreecommitdiffstats
path: root/src/socket/SocketListener.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-03 05:43:19 +0000
committerDavid Robillard <d@drobilla.net>2012-05-03 05:43:19 +0000
commit02dcc06a1675e936ef85714827accb20a9f2a94c (patch)
treee1980d770736b64b6652c4afed6f2a7bb3ba3858 /src/socket/SocketListener.hpp
parent9ae720fdc60d7e40b1b8be7c1133a57acb4e564c (diff)
downloadingen-02dcc06a1675e936ef85714827accb20a9f2a94c.tar.gz
ingen-02dcc06a1675e936ef85714827accb20a9f2a94c.tar.bz2
ingen-02dcc06a1675e936ef85714827accb20a9f2a94c.zip
Work towards a proper server infrastructure with a thread per connection.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4320 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/socket/SocketListener.hpp')
-rw-r--r--src/socket/SocketListener.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/socket/SocketListener.hpp b/src/socket/SocketListener.hpp
index 896b08b4..10e9d1d2 100644
--- a/src/socket/SocketListener.hpp
+++ b/src/socket/SocketListener.hpp
@@ -30,16 +30,13 @@ namespace Socket {
class SocketListener : public Raul::Thread
{
public:
- SocketListener(Ingen::Shared::World& world,
- SharedPtr<Interface> iface);
-
+ SocketListener(Ingen::Shared::World& world);
~SocketListener();
private:
virtual void _run();
Ingen::Shared::World& _world;
- SharedPtr<Interface> _iface;
std::string _sock_path;
int _sock;
};