summaryrefslogtreecommitdiffstats
path: root/src/client/OSCClientReceiver.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/client/OSCClientReceiver.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/client/OSCClientReceiver.cpp')
-rw-r--r--src/client/OSCClientReceiver.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/OSCClientReceiver.cpp b/src/client/OSCClientReceiver.cpp
index 31c0aa2a..d0119987 100644
--- a/src/client/OSCClientReceiver.cpp
+++ b/src/client/OSCClientReceiver.cpp
@@ -200,10 +200,10 @@ OSCClientReceiver::_connection_cb(const char* path, const char* types, lo_arg**
int
OSCClientReceiver::_disconnection_cb(const char* path, const char* types, lo_arg** argv, int argc, lo_message msg)
{
- const char* src_port_path = &argv[0]->s;
- const char* dst_port_path = &argv[1]->s;
+ const char* src_uri = &argv[0]->s;
+ const char* dst_uri = &argv[1]->s;
- _target->disconnect(src_port_path, dst_port_path);
+ _target->disconnect(src_uri, dst_uri);
return 0;
}