Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
a4000349
Commit
a4000349
authored
Jan 18, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jan 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Fix the sending of >5800 byte messages by only adding offset
to the buffer after the first batch of data has been written to the pipe.
parent
b4fe7ea7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
rpc_message.c
dlls/rpcrt4/rpc_message.c
+3
-3
No files found.
dlls/rpcrt4/rpc_message.c
View file @
a4000349
...
...
@@ -254,15 +254,13 @@ RPC_STATUS RPCRT4_Send(RpcConnection *Connection, RpcPktHdr *Header,
hdr_size
=
Header
->
common
.
frag_len
;
Header
->
common
.
flags
|=
RPC_FLG_FIRST
;
Header
->
common
.
flags
&=
~
RPC_FLG_LAST
;
while
(
!
(
Header
->
common
.
flags
&
RPC_FLG_LAST
))
{
while
(
!
(
Header
->
common
.
flags
&
RPC_FLG_LAST
))
{
/* decide if we need to split the packet into fragments */
if
((
BufferLength
+
hdr_size
)
<=
Connection
->
MaxTransmissionSize
)
{
Header
->
common
.
flags
|=
RPC_FLG_LAST
;
Header
->
common
.
frag_len
=
BufferLength
+
hdr_size
;
}
else
{
Header
->
common
.
frag_len
=
Connection
->
MaxTransmissionSize
;
buffer_pos
+=
Header
->
common
.
frag_len
-
hdr_size
;
BufferLength
-=
Header
->
common
.
frag_len
-
hdr_size
;
}
/* transmit packet header */
...
...
@@ -283,6 +281,8 @@ RPC_STATUS RPCRT4_Send(RpcConnection *Connection, RpcPktHdr *Header,
return
GetLastError
();
}
buffer_pos
+=
Header
->
common
.
frag_len
-
hdr_size
;
BufferLength
-=
Header
->
common
.
frag_len
-
hdr_size
;
Header
->
common
.
flags
&=
~
RPC_FLG_FIRST
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment