wbSkt Flashcards

1
Q

What are some events for a webSocket?

A

onopen
onmessage

functions need to be written and assigned to these, like
var sock = new WebSocket("wss://echo.websocket.org");
sock.onopen = uponOpenWS;

send data with
sock.send(“ABCD”);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a good C language websocket library in ubutu?

A

sudo apt-get install libwebsockets-dev

How well did you know this?
1
Not at all
2
3
4
5
Perfectly