summaryrefslogtreecommitdiffstats
path: root/src/socket/SocketListener.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/socket/SocketListener.cpp')
-rw-r--r--src/socket/SocketListener.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/socket/SocketListener.cpp b/src/socket/SocketListener.cpp
index cbd29d7e..a2dcaba0 100644
--- a/src/socket/SocketListener.cpp
+++ b/src/socket/SocketListener.cpp
@@ -38,12 +38,11 @@ namespace Ingen {
namespace Socket {
SocketListener::SocketListener(Ingen::Shared::World& world)
- : _world(world)
+ : Raul::Thread("SocketListener")
+ , _world(world)
, _unix_sock(Socket::UNIX)
, _net_sock(Socket::TCP)
{
- set_name("SocketListener");
-
// Create UNIX socket
_unix_path = world.conf().option("socket").get_string();
const std::string unix_uri = "unix://" + _unix_path;