-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UDP->WebSocket relay "clogs up" #217
Comments
@AlecsSantos can you tell me what it is, before I click a random link to a cloud storage? |
This is likely malware; I've deleted the comments from this user and reported. |
@the-drunk-coder, I realized I never did respond to your issue here, I was on vacation and distracted by the malware response you received. Off the top of my head, I'm not sure what the issue you're facing is. In theory, I don't think it's likely to be an issue with the osc.js library directly—but in practice, who knows? As a protocol, UDP doesn't guarantee that all packets will be received, so if the issue is just arbitrarily lost packets, using TCP instead might provide you with greater certainty (at the cost of potentially higher latency). Have you had any luck in further diagnosing the issue? |
Hi, I haven't really found anything "actionable", ultimately I split up the messages I sent into various batches as a workaround ... |
Thanks for responding! That seems like a reasonable workaround. |
Hi,
I set up a UPD to WebSocket relay to receive OSC messages in the browser.
On the
node
side (usingexpress.js
as an application framework):and on the browser side:
It works as long as I'm not sending too many (sequential) messages.
The problem is, I'm sending out about a 1000 messages (957 to be precise), but only about 800 arrive on the browser side, so something seems to get "clogged up".
If I start an OSC reciever with
oscdump
, I can see all the messages arriving, so I don't thing it's a problem with my sending application.Is there some flags I could tweak to be able to achieve a higher throughput ?
Best,
n
The text was updated successfully, but these errors were encountered: