Skip to content

Commit

Permalink
forcibly send inline
Browse files Browse the repository at this point in the history
  • Loading branch information
ami-GS committed Oct 10, 2023
1 parent b3f71e9 commit b787fcf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/platform/datapath_epoll.c
Original file line number Diff line number Diff line change
Expand Up @@ -2456,6 +2456,10 @@ CxPlatSendDataSendTcp(
TotalSize,
0);
if (BytesSent < 0) {
// forcibly send inline
if (errno == EAGAIN || errno == EWOULDBLOCK) {
continue;
}
return FALSE;
}
Buffer += BytesSent;
Expand Down

0 comments on commit b787fcf

Please sign in to comment.