mirror of
https://github.com/MercuryWorkshop/epoxy-tls.git
synced 2025-05-12 14:00:01 -04:00
update fastwebsockets, revert custom asyncread impl
This commit is contained in:
parent
1916a8e7c8
commit
5571a63f40
13 changed files with 646 additions and 703 deletions
|
@ -196,9 +196,11 @@ onmessage = async (msg) => {
|
|||
[],
|
||||
{ "x-header": "abc" },
|
||||
);
|
||||
let i = 0;
|
||||
while (true) {
|
||||
log("sending `data`");
|
||||
await ws.send("data");
|
||||
log(`sending \`data${i}\``);
|
||||
await ws.send("data"+i);
|
||||
i++;
|
||||
await (new Promise((res, _) => setTimeout(res, 10)));
|
||||
}
|
||||
} else if (should_tls_test) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue