Cazzar / VTubeStudio-StreamDeck

16 stars 3 forks source link

Discovery port conflict with other vts plugins #13

Closed xserp closed 2 years ago

xserp commented 2 years ago

the discovery port client is not allowing to share the port with other udp clients on the same port causing other plugins to fail discovery. the udp client will need to allow reuse. something like:

_udpClient=new UdpClient(); _udpClient.Client.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true); This also needs to be set before binding to the port.

Cazzar commented 2 years ago

Version 1.3.5 has been made to fix this issue

https://github.com/Cazzar/VTubeStudio-StreamDeck/releases/tag/1.3.5