You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, im sending big json (not massive but 8k chars) from one device to other using extosc.
While the exchange is between win10 device and android there is no problem.
But when the exchange is between two androids the packet is not arriving to the other one.
While shorter strings are arriving without any problems, is there a limit of what can be shared through the extosc on android ?
Ive increased packet size to 65507 but still the issue persist, and only on android.
Edit: it is weird but any string longer than 1024 chars are not getting send from android to any other client.
The text was updated successfully, but these errors were encountered:
Hey! In general, since OSC uses UDP, sending messages larger than 1500 bytes (https://en.wikipedia.org/wiki/Maximum_transmission_unit) in one send is a bad decision. Since larger packets will break into smaller packets, then they will be lost more often, so messages may not reach.
Accordingly, it is better to send such a large json in pieces.
But so far I have no idea - is this a limitation in Android, or just packets are lost due to the fact that they are larger than the MTU size.
Hello, im sending big json (not massive but 8k chars) from one device to other using extosc.
While the exchange is between win10 device and android there is no problem.
But when the exchange is between two androids the packet is not arriving to the other one.
While shorter strings are arriving without any problems, is there a limit of what can be shared through the extosc on android ?
Ive increased packet size to 65507 but still the issue persist, and only on android.
Edit: it is weird but any string longer than 1024 chars are not getting send from android to any other client.
The text was updated successfully, but these errors were encountered: