include Open Sound Control (OSC) in VST3

Hi.

I plan to write a multichannel-VST-plugin that responds to OSC. Are there any examples that can be studied? Any experiences with that stuff somewhere?

Hi
i have no useful example, but you have to take care how you will use the UDP protocol, especially how to handle threading,
if you want to control parameters, you have to do it in the editcontroller part (UI Thread), if it is for processing part be sure that you will have no conflict with the RealTime Processing thread and handle UDP message in a separate thread.
Read some doc about UDP: Real time communications over UDP protocol - CodeProject

my 2 cents

Than you for your reply. I managed to do it in a multitheading setup. Everything works now, except that after closing the connection cannot be reestablished again until I restart the host. I missed to find how to disconnect properly.