rpcrt4: Make RPCRT4_Receive() static.
This commit is contained in:
parent
673d7538cb
commit
99c5ca7e40
|
@ -1547,8 +1547,8 @@ fail:
|
||||||
*
|
*
|
||||||
* Receive a packet from connection and merge the fragments.
|
* Receive a packet from connection and merge the fragments.
|
||||||
*/
|
*/
|
||||||
RPC_STATUS RPCRT4_Receive(RpcConnection *Connection, RpcPktHdr **Header,
|
static RPC_STATUS RPCRT4_Receive(RpcConnection *Connection, RpcPktHdr **Header,
|
||||||
PRPC_MESSAGE pMsg)
|
PRPC_MESSAGE pMsg)
|
||||||
{
|
{
|
||||||
return RPCRT4_ReceiveWithAuth(Connection, Header, pMsg, NULL, NULL);
|
return RPCRT4_ReceiveWithAuth(Connection, Header, pMsg, NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
|
@ -36,7 +36,6 @@ RpcPktHdr *RPCRT4_BuildHttpFlowControlHeader(BOOL server, ULONG bytes_transmitte
|
||||||
VOID RPCRT4_FreeHeader(RpcPktHdr *Header);
|
VOID RPCRT4_FreeHeader(RpcPktHdr *Header);
|
||||||
RPC_STATUS RPCRT4_Send(RpcConnection *Connection, RpcPktHdr *Header, void *Buffer, unsigned int BufferLength);
|
RPC_STATUS RPCRT4_Send(RpcConnection *Connection, RpcPktHdr *Header, void *Buffer, unsigned int BufferLength);
|
||||||
RPC_STATUS RPCRT4_SendWithAuth(RpcConnection *Connection, RpcPktHdr *Header, void *Buffer, unsigned int BufferLength, const void *Auth, unsigned int AuthLength);
|
RPC_STATUS RPCRT4_SendWithAuth(RpcConnection *Connection, RpcPktHdr *Header, void *Buffer, unsigned int BufferLength, const void *Auth, unsigned int AuthLength);
|
||||||
RPC_STATUS RPCRT4_Receive(RpcConnection *Connection, RpcPktHdr **Header, PRPC_MESSAGE pMsg);
|
|
||||||
RPC_STATUS RPCRT4_ReceiveWithAuth(RpcConnection *Connection, RpcPktHdr **Header, PRPC_MESSAGE pMsg, unsigned char **auth_data_out, ULONG *auth_length_out);
|
RPC_STATUS RPCRT4_ReceiveWithAuth(RpcConnection *Connection, RpcPktHdr **Header, PRPC_MESSAGE pMsg, unsigned char **auth_data_out, ULONG *auth_length_out);
|
||||||
DWORD RPCRT4_GetHeaderSize(const RpcPktHdr *Header);
|
DWORD RPCRT4_GetHeaderSize(const RpcPktHdr *Header);
|
||||||
RPC_STATUS RPCRT4_ValidateCommonHeader(const RpcPktCommonHdr *hdr);
|
RPC_STATUS RPCRT4_ValidateCommonHeader(const RpcPktCommonHdr *hdr);
|
||||||
|
|
Loading…
Reference in New Issue