summaryrefslogtreecommitdiff
path: root/open-sound-control
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2024-03-17 18:12:09 +0100
committerThomas White <taw@physics.org>2024-03-17 18:12:09 +0100
commitd931d96a0872140b570b9c5e1a5024cf2dfee000 (patch)
treed080a694e9db6e006f99ff05a9bf09c2d50c37fd /open-sound-control
parent37ab592e6f8e29cfae51e02ab13078765ca6d3cf (diff)
Add add-osc-wildcard
Diffstat (limited to 'open-sound-control')
-rw-r--r--open-sound-control/api.scm1
-rw-r--r--open-sound-control/server-thread.scm3
-rw-r--r--open-sound-control/server.scm1
3 files changed, 4 insertions, 1 deletions
diff --git a/open-sound-control/api.scm b/open-sound-control/api.scm
index 9326654..6bb92ef 100644
--- a/open-sound-control/api.scm
+++ b/open-sound-control/api.scm
@@ -22,6 +22,7 @@
#:export (make-osc-server-thread
make-osc-server
add-osc-method
+ add-osc-wildcard
osc-recv
diff --git a/open-sound-control/server-thread.scm b/open-sound-control/server-thread.scm
index 5ff23e2..9d55f6c 100644
--- a/open-sound-control/server-thread.scm
+++ b/open-sound-control/server-thread.scm
@@ -21,4 +21,5 @@
(define-module (open-sound-control server-thread)
#:use-module (open-sound-control api)
#:re-export (make-osc-server-thread
- add-osc-method))
+ add-osc-method
+ add-osc-wildcard))
diff --git a/open-sound-control/server.scm b/open-sound-control/server.scm
index 308faf1..0619bbe 100644
--- a/open-sound-control/server.scm
+++ b/open-sound-control/server.scm
@@ -22,4 +22,5 @@
#:use-module (open-sound-control api)
#:re-export (make-osc-server
add-osc-method
+ add-osc-wildcard
osc-recv))