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/OSCClientSender.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/engine/OSCClientSender.cpp') diff --git a/src/engine/OSCClientSender.cpp b/src/engine/OSCClientSender.cpp index d9893241..aa99c1d8 100644 --- a/src/engine/OSCClientSender.cpp +++ b/src/engine/OSCClientSender.cpp @@ -278,16 +278,16 @@ OSCClientSender::set_voice_value(const std::string& port_path, uint32_t voice, c /** \page client_osc_namespace - *

\b /ingen/port_activity - Notification of activity for a port (e.g. MIDI messages) - * \arg \b path (string) - Path of port

\n \n + *

\b /ingen/activity - Notification of "activity" (e.g. port message blinkenlights) + * \arg \b path (string) - Path of object

\n \n */ void -OSCClientSender::port_activity(const std::string& port_path) +OSCClientSender::activity(const std::string& path) { if (!_enabled) return; - lo_send(_address, "/ingen/port_activity", "s", port_path.c_str(), LO_ARGS_END); + lo_send(_address, "/ingen/activity", "s", path.c_str(), LO_ARGS_END); } -- cgit v1.2.1