Skip to content
Snippets Groups Projects
Commit 81b7ef80 authored by Loïc Correnson's avatar Loïc Correnson Committed by David Bühler
Browse files

[server/socket] force flushing bsnd on polling

parent 7b6c6aab
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,6 @@ let write_data ch data = ...@@ -118,7 +118,6 @@ let write_data ch data =
in in
Buffer.add_string ch.bsnd hex ; Buffer.add_string ch.bsnd hex ;
Buffer.add_string ch.bsnd data ; Buffer.add_string ch.bsnd data ;
send_bytes ch ;
end end
(* -------------------------------------------------------------------------- *) (* -------------------------------------------------------------------------- *)
...@@ -190,7 +189,8 @@ let callback ch rs = ...@@ -190,7 +189,8 @@ let callback ch rs =
| data -> write_data ch data | data -> write_data ch data
| exception err -> | exception err ->
Senv.debug "Socket: encoding error %S@." (Printexc.to_string err) Senv.debug "Socket: encoding error %S@." (Printexc.to_string err)
) rs ) rs ;
send_bytes ch
let commands ch = let commands ch =
begin begin
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment