extension-websocket icon indicating copy to clipboard operation
extension-websocket copied to clipboard

A native websocket implementation for Defold

Results 3 extension-websocket issues
Sort by recently updated
recently updated
newest added

Added non secure websocket server implementation.

Reported by @ainonovo, initially here https://github.com/defold/extension-websocket/issues/48 ``` local function websocket_disconnect(self) if self.ws_con ~= nil then pprint(self.ws_con) websocket.disconnect(self.ws_con) end end function final(self) websocket_disconnect(self) end ``` in console ``` userdata: 0x0a109ad0 ERROR:WEBSOCKET:...

bug

There's now a function in the dmSDK ([dmSocket::SetQuickAck()](https://defold.com/ref/beta/dmSocket/#dmSocket::SetQuickAck:socket-use_quick_ack)) that sets this flag on the supported platforms. The question is where and when to call this function, since the flag seems...