From 24d998447070dbfef3eaf7762dce7e97c3903801 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 16 Nov 2008 02:49:22 +0000 Subject: TCP notification stream support (not fully implemented yet, but transport stuff is working). Support multiple event sources in the engine. Clean up HTTP/TCP stuff. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1721 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/ClientBroadcaster.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/engine/ClientBroadcaster.cpp') diff --git a/src/engine/ClientBroadcaster.cpp b/src/engine/ClientBroadcaster.cpp index f13743f6..19cb0cd4 100644 --- a/src/engine/ClientBroadcaster.cpp +++ b/src/engine/ClientBroadcaster.cpp @@ -222,10 +222,10 @@ ClientBroadcaster::send_port_value(const string& port_path, const Raul::Atom& va void -ClientBroadcaster::send_port_activity(const string& port_path) +ClientBroadcaster::send_activity(const string& path) { for (Clients::const_iterator i = _clients.begin(); i != _clients.end(); ++i) - (*i).second->port_activity(port_path); + (*i).second->activity(path); } -- cgit v1.2.1