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
ef5f1f50
Commit
ef5f1f50
authored
May 13, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
May 13, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Make RPCRT4_NextHttpHeaderField() and RPCRT4_default_receive_fragment() static.
parent
46ec9121
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
rpc_message.c
dlls/rpcrt4/rpc_message.c
+2
-2
rpc_message.h
dlls/rpcrt4/rpc_message.h
+0
-1
No files found.
dlls/rpcrt4/rpc_message.c
View file @
ef5f1f50
...
...
@@ -527,7 +527,7 @@ BOOL RPCRT4_IsValidHttpPacket(RpcPktHdr *hdr, unsigned char *data,
}
/* assumes the HTTP packet has been validated */
unsigned
char
*
RPCRT4_NextHttpHeaderField
(
unsigned
char
*
data
)
static
unsigned
char
*
RPCRT4_NextHttpHeaderField
(
unsigned
char
*
data
)
{
ULONG
type
;
...
...
@@ -1032,7 +1032,7 @@ RPC_STATUS RPCRT4_ValidateCommonHeader(const RpcPktCommonHdr *hdr)
*
* Receive a fragment from a connection.
*/
RPC_STATUS
RPCRT4_default_receive_fragment
(
RpcConnection
*
Connection
,
RpcPktHdr
**
Header
,
void
**
Payload
)
static
RPC_STATUS
RPCRT4_default_receive_fragment
(
RpcConnection
*
Connection
,
RpcPktHdr
**
Header
,
void
**
Payload
)
{
RPC_STATUS
status
;
DWORD
hdr_length
;
...
...
dlls/rpcrt4/rpc_message.h
View file @
ef5f1f50
...
...
@@ -41,7 +41,6 @@ DWORD RPCRT4_GetHeaderSize(const RpcPktHdr *Header);
RPC_STATUS
RPCRT4_ValidateCommonHeader
(
const
RpcPktCommonHdr
*
hdr
);
BOOL
RPCRT4_IsValidHttpPacket
(
RpcPktHdr
*
hdr
,
unsigned
char
*
data
,
unsigned
short
data_len
);
unsigned
char
*
RPCRT4_NextHttpHeaderField
(
unsigned
char
*
data
);
RPC_STATUS
RPCRT4_ParseHttpPrepareHeader1
(
RpcPktHdr
*
header
,
unsigned
char
*
data
,
ULONG
*
field1
);
RPC_STATUS
RPCRT4_ParseHttpPrepareHeader2
(
RpcPktHdr
*
header
,
unsigned
char
*
data
,
ULONG
*
field1
,
ULONG
*
bytes_until_next_packet
,
ULONG
*
field3
);
RPC_STATUS
RPCRT4_ParseHttpFlowControlHeader
(
RpcPktHdr
*
header
,
unsigned
char
*
data
,
BOOL
server
,
ULONG
*
bytes_transmitted
,
ULONG
*
flow_control_increment
,
UUID
*
pipe_uuid
);
...
...
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