Hello,
I have problem with example called "test_sockets_partial_client.c".
All expect read data from server working, browser connect to server, send 
data to server, but when server response Console returns: Assertion failed: 
undefined.
Non-emscripten version of client written in pure Javascript by WebSocket 
Class, works great.
Someone have any idea ?

BTW. server is in C#,
I send to client,
byte[] send = new byte[5 + 2];
send[0] = 0x81; // last frame, text
send[1] = 5; // not masked, length 5
send[2] = (byte)'x';
send[3] = (byte)'Y';
send[4] = (byte)'z';
 send[5] = (byte)'A';
send[6] = (byte)'B';
client.Send(send);


-- 
You received this message because you are subscribed to the Google Groups 
"emscripten-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to