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
61967ff4
Commit
61967ff4
authored
Nov 10, 2006
by
Rob Shearman
Committed by
Alexandre Julliard
Nov 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Create one protseq object per used protocol sequence, not per…
rpcrt4: Create one protseq object per used protocol sequence, not per RpcServerUseProtseq* function call.
parent
e1561038
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
6 deletions
+32
-6
rpc_server.c
dlls/rpcrt4/rpc_server.c
+32
-6
No files found.
dlls/rpcrt4/rpc_server.c
View file @
61967ff4
...
...
@@ -500,10 +500,6 @@ static RPC_STATUS RPCRT4_use_protseq(RpcServerProtseq* ps, LPSTR endpoint)
if
(
status
!=
RPC_S_OK
)
return
status
;
EnterCriticalSection
(
&
server_cs
);
list_add_head
(
&
protseqs
,
&
ps
->
entry
);
LeaveCriticalSection
(
&
server_cs
);
if
(
std_listen
)
{
status
=
RPCRT4_start_listen_protseq
(
ps
,
FALSE
);
...
...
@@ -604,6 +600,8 @@ RPC_STATUS WINAPI RpcServerUseProtseqEpW( RPC_WSTR Protseq, UINT MaxCalls, RPC_W
/***********************************************************************
* alloc_serverprotoseq (internal)
*
* Must be called with server_cs held.
*/
static
RPC_STATUS
alloc_serverprotoseq
(
UINT
MaxCalls
,
char
*
Protseq
,
RpcServerProtseq
**
ps
)
{
...
...
@@ -628,9 +626,37 @@ static RPC_STATUS alloc_serverprotoseq(UINT MaxCalls, char *Protseq, RpcServerPr
(
*
ps
)
->
mgr_mutex
=
NULL
;
(
*
ps
)
->
server_ready_event
=
NULL
;
list_add_head
(
&
protseqs
,
&
(
*
ps
)
->
entry
);
TRACE
(
"new protseq %p created for %s
\n
"
,
*
ps
,
Protseq
);
return
RPC_S_OK
;
}
/* Finds a given protseq or creates a new one if one doesn't already exist */
static
RPC_STATUS
RPCRT4_get_or_create_serverprotseq
(
UINT
MaxCalls
,
char
*
Protseq
,
RpcServerProtseq
**
ps
)
{
RPC_STATUS
status
;
RpcServerProtseq
*
cps
;
EnterCriticalSection
(
&
server_cs
);
LIST_FOR_EACH_ENTRY
(
cps
,
&
protseqs
,
RpcServerProtseq
,
entry
)
if
(
!
strcmp
(
cps
->
Protseq
,
Protseq
))
{
TRACE
(
"found existing protseq object for %s
\n
"
,
Protseq
);
*
ps
=
cps
;
LeaveCriticalSection
(
&
server_cs
);
return
S_OK
;
}
status
=
alloc_serverprotoseq
(
MaxCalls
,
Protseq
,
ps
);
LeaveCriticalSection
(
&
server_cs
);
return
status
;
}
/***********************************************************************
* RpcServerUseProtseqEpExA (RPCRT4.@)
*/
...
...
@@ -645,7 +671,7 @@ RPC_STATUS WINAPI RpcServerUseProtseqEpExA( RPC_CSTR Protseq, UINT MaxCalls, RPC
debugstr_a
(
szep
),
SecurityDescriptor
,
lpPolicy
->
Length
,
lpPolicy
->
EndpointFlags
,
lpPolicy
->
NICFlags
);
status
=
alloc_serverproto
seq
(
MaxCalls
,
RPCRT4_strdupA
(
szps
),
&
ps
);
status
=
RPCRT4_get_or_create_serverprot
seq
(
MaxCalls
,
RPCRT4_strdupA
(
szps
),
&
ps
);
if
(
status
!=
RPC_S_OK
)
return
status
;
...
...
@@ -666,7 +692,7 @@ RPC_STATUS WINAPI RpcServerUseProtseqEpExW( RPC_WSTR Protseq, UINT MaxCalls, RPC
debugstr_w
(
Endpoint
),
SecurityDescriptor
,
lpPolicy
->
Length
,
lpPolicy
->
EndpointFlags
,
lpPolicy
->
NICFlags
);
status
=
alloc_serverproto
seq
(
MaxCalls
,
RPCRT4_strdupWtoA
(
Protseq
),
&
ps
);
status
=
RPCRT4_get_or_create_serverprot
seq
(
MaxCalls
,
RPCRT4_strdupWtoA
(
Protseq
),
&
ps
);
if
(
status
!=
RPC_S_OK
)
return
status
;
...
...
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