Replies: 2 comments
-
I like websockets and use them in a lot of my own work. OSCQuery will help with some of the discoverability issues. WebSockets present some security issues not present with OSC, as you mention. Nonetheless, this is a reasonable idea and it's under consideration for the long-term. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I'm currently considering this. maybe I'll implement this in 2~3 days. I'm currently using web for UI in my VRC OSC multi-port forwarding Config Manager. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
OSC is pretty much a unidirectional UDP-based protocol.
Use of WebSocket to encapsulate OSC messages can provide several benefits:
One major drawback of a WebSocket implementation is that it uses TCP, and with that comes head-of-line blocking which might affect performance over slow networks. However, within a single system, that is not really a concern.
Naturally, most of this can be provided by a standalone unofficial application that would proxy data, but having official first-party support would be neat. Additionally, first-party support would enable additional features and optimization.
Beta Was this translation helpful? Give feedback.
All reactions