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

[server] force flushing of in & out socket buffers

parent 0c0b4ba4
No related branches found
No related tags found
No related merge requests found
...@@ -59,11 +59,15 @@ type channel = { ...@@ -59,11 +59,15 @@ type channel = {
let feed_bytes { sock ; rcv ; brcv } = let feed_bytes { sock ; rcv ; brcv } =
try try
(* rcv buffer is only used locally *) while true do
let s = Bytes.length rcv in (* rcv buffer is only used locally *)
let n = Unix.read sock rcv 0 s in let s = Bytes.length rcv in
Buffer.add_subbytes brcv rcv 0 n ; let n = Unix.read sock rcv 0 s in
with Unix.Unix_error((EAGAIN|EWOULDBLOCK),_,_) -> () if n > 0 then
Buffer.add_subbytes brcv rcv 0 n
else raise Exit
done
with Exit | Unix.Unix_error((EAGAIN|EWOULDBLOCK),_,_) -> ()
let send_bytes { sock ; snd ; bsnd } = let send_bytes { sock ; snd ; bsnd } =
try try
...@@ -200,7 +204,7 @@ let commands ch = ...@@ -200,7 +204,7 @@ let commands ch =
begin begin
feed_bytes ch ; feed_bytes ch ;
match parse ch with match parse ch with
| [] -> None | [] -> send_bytes ch ; None
| requests -> Some Main.{ requests ; callback = callback ch } | requests -> Some Main.{ requests ; callback = callback ch }
end end
......
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