diff options
Diffstat (limited to 'include/ingen/client/SocketClient.hpp')
-rw-r--r-- | include/ingen/client/SocketClient.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/ingen/client/SocketClient.hpp b/include/ingen/client/SocketClient.hpp index 0e651250..1e75ae80 100644 --- a/include/ingen/client/SocketClient.hpp +++ b/include/ingen/client/SocketClient.hpp @@ -42,7 +42,7 @@ class INGEN_API SocketClient : public SocketWriter public: SocketClient(World& world, const URI& uri, - const std::shared_ptr<Raul::Socket>& sock, + const std::shared_ptr<raul::Socket>& sock, const std::shared_ptr<Interface>& respondee) : SocketWriter(world.uri_map(), world.uris(), uri, sock) , _respondee(respondee) @@ -63,11 +63,11 @@ public: const URI& uri, const std::shared_ptr<ingen::Interface>& respondee) { - const Raul::Socket::Type type = (uri.scheme() == "unix" - ? Raul::Socket::Type::UNIX - : Raul::Socket::Type::TCP); + const raul::Socket::Type type = (uri.scheme() == "unix" + ? raul::Socket::Type::UNIX + : raul::Socket::Type::TCP); - std::shared_ptr<Raul::Socket> sock(new Raul::Socket(type)); + std::shared_ptr<raul::Socket> sock(new raul::Socket(type)); if (!sock->connect(uri)) { world.log().error("Failed to connect <%1%> (%2%)\n", sock->uri(), strerror(errno)); |