summaryrefslogtreecommitdiffstats
path: root/src/engine/OSCClientSender.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-20 15:27:34 +0000
committerDavid Robillard <d@drobilla.net>2011-04-20 15:27:34 +0000
commit1f1758f4dda0ddaf01c0b1d3a756f9db8ddc979d (patch)
treebf97929a31ac38acc158aef045921ad1954acc9d /src/engine/OSCClientSender.cpp
parentbe78a679a950f1d1b07f8f16c358c33ac1ccda66 (diff)
downloadingen-1f1758f4dda0ddaf01c0b1d3a756f9db8ddc979d.tar.gz
ingen-1f1758f4dda0ddaf01c0b1d3a756f9db8ddc979d.tar.bz2
ingen-1f1758f4dda0ddaf01c0b1d3a756f9db8ddc979d.zip
Make disconnect take URI parameters (for wildcare URI towards killing disconnect_all).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3183 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/OSCClientSender.cpp')
-rw-r--r--src/engine/OSCClientSender.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/OSCClientSender.cpp b/src/engine/OSCClientSender.cpp
index 88b979bf..bcd3be10 100644
--- a/src/engine/OSCClientSender.cpp
+++ b/src/engine/OSCClientSender.cpp
@@ -185,10 +185,10 @@ OSCClientSender::connect(const Path& src_port_path,
* Notification a connection has been unmade.
*/
void
-OSCClientSender::disconnect(const Path& src_port_path,
- const Path& dst_port_path)
+OSCClientSender::disconnect(const URI& src,
+ const URI& dst)
{
- send("/disconnect", "ss", src_port_path.c_str(), dst_port_path.c_str(), LO_ARGS_END);
+ send("/disconnect", "ss", src.c_str(), dst.c_str(), LO_ARGS_END);
}
/** @page client_osc_namespace