aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--udpreceive.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/udpreceive.c b/udpreceive.c
index 63e226e..bf871e9 100644
--- a/udpreceive.c
+++ b/udpreceive.c
@@ -47,6 +47,7 @@ typedef struct _udpreceive
static void udpreceive_read_callback(void*y, t_iemnet_chunk*c) {
t_udpreceive*x=(t_udpreceive*)y;
if(c) {
+ iemnet__addrout(x->x_statout, x->x_addrout, c->addr, c->port);
x->x_floatlist=iemnet__chunk2list(c, x->x_floatlist); // gets destroyed in the dtor
outlet_list(x->x_msgout, gensym("list"), x->x_floatlist->argc, x->x_floatlist->argv);
} else {