Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
0dde5a0f
Commit
0dde5a0f
authored
3 years ago
by
Loïc Correnson
Committed by
David Bühler
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[server] force flushing of in & out socket buffers
parent
0c0b4ba4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugins/server/server_socket.ml
+10
-6
10 additions, 6 deletions
src/plugins/server/server_socket.ml
with
10 additions
and
6 deletions
src/plugins/server/server_socket.ml
+
10
−
6
View file @
0dde5a0f
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment