Ola
I found that one can set a payload size on connection, https://www.b4x.com/android/forum/threads/sending-binary-data-over-websocket.44776/#content before the connection is made?
How can I achieve similar with BANanoServer?
Thanks
I found that one can set a payload size on connection, https://www.b4x.com/android/forum/threads/sending-binary-data-over-websocket.44776/#content before the connection is made?
B4X:
Dim jo As JavaObject = WebSocket1
jo = jo.GetField("options") 'WebSocketOptions
jo.RunMethod("setMaxMessagePayloadSize", Array(4 * 1024 * 1024)) '4mb
How can I achieve similar with BANanoServer?
Thanks