(sock, flags, payload)
| 3462 | }, |
| 3463 | |
| 3464 | clientFence(sock, flags, payload) { |
| 3465 | sock.sQpush8(248); // msg-type |
| 3466 | |
| 3467 | sock.sQpush8(0); // padding |
| 3468 | sock.sQpush8(0); // padding |
| 3469 | sock.sQpush8(0); // padding |
| 3470 | |
| 3471 | sock.sQpush32(flags); |
| 3472 | |
| 3473 | sock.sQpush8(payload.length); |
| 3474 | sock.sQpushString(payload); |
| 3475 | |
| 3476 | sock.flush(); |
| 3477 | }, |
| 3478 | |
| 3479 | enableContinuousUpdates(sock, enable, x, y, width, height) { |
| 3480 | sock.sQpush8(150); // msg-type |
nothing calls this directly
no test coverage detected