mirror of
https://github.com/MercuryWorkshop/epoxy-tls.git
synced 2025-05-12 14:00:01 -04:00
fix pong read
This commit is contained in:
parent
09b15e3c43
commit
2dfcb0021f
2 changed files with 5 additions and 0 deletions
|
@ -111,6 +111,7 @@ pub async fn route(
|
|||
ws_upgrade(req, |fut, wsproxy, udp, path| async move {
|
||||
let mut ws = fut.await.context("failed to await upgrade future")?;
|
||||
ws.set_max_message_size(CONFIG.server.max_message_size);
|
||||
ws.set_auto_pong(false);
|
||||
|
||||
if wsproxy {
|
||||
let ws = WebSocketStreamWrapper(FragmentCollector::new(ws));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue