Multiple OSC messages

i want to send multiple OSC messages (multiple tags) via one UDP node. is this possible ? any way to combine osc encoded messages and take them apart on the other end ?

or do i need one osc en/decoder + udp for each message at both sides ?

note that you can create several udp client nodes that send to the same port.
while you can only have one listening udp server node that listens on that port!

if you really want to use only one udp client node i think you could just + string the osc encoded messages. not tested but that should do it.

it is more difficult to fiddle the messages apart on the server(receiver) side. there you’ll need a tokenizer node.