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
570c57ac
Commit
570c57ac
authored
Aug 05, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Aug 07, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Trace values of SCHANNEL_CRED structure.
parent
c689451c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
schannel.c
dlls/secur32/schannel.c
+15
-0
No files found.
dlls/secur32/schannel.c
View file @
570c57ac
...
...
@@ -288,6 +288,21 @@ static SECURITY_STATUS SEC_ENTRY schan_QueryCredentialsAttributesW(
static
SECURITY_STATUS
schan_CheckCreds
(
const
SCHANNEL_CRED
*
schanCred
)
{
SECURITY_STATUS
st
;
DWORD
i
;
TRACE
(
"dwVersion = %d
\n
"
,
schanCred
->
dwVersion
);
TRACE
(
"cCreds = %d
\n
"
,
schanCred
->
cCreds
);
TRACE
(
"hRootStore = %p
\n
"
,
schanCred
->
hRootStore
);
TRACE
(
"cMappers = %d
\n
"
,
schanCred
->
cMappers
);
TRACE
(
"cSupportedAlgs = %d:
\n
"
,
schanCred
->
cSupportedAlgs
);
for
(
i
=
0
;
i
<
schanCred
->
cSupportedAlgs
;
i
++
)
TRACE
(
"%08x
\n
"
,
schanCred
->
palgSupportedAlgs
[
i
]);
TRACE
(
"grbitEnabledProtocols = %08x
\n
"
,
schanCred
->
grbitEnabledProtocols
);
TRACE
(
"dwMinimumCipherStrength = %d
\n
"
,
schanCred
->
dwMinimumCipherStrength
);
TRACE
(
"dwMaximumCipherStrength = %d
\n
"
,
schanCred
->
dwMaximumCipherStrength
);
TRACE
(
"dwSessionLifespan = %d
\n
"
,
schanCred
->
dwSessionLifespan
);
TRACE
(
"dwFlags = %08x
\n
"
,
schanCred
->
dwFlags
);
TRACE
(
"dwCredFormat = %d
\n
"
,
schanCred
->
dwCredFormat
);
switch
(
schanCred
->
dwVersion
)
{
...
...
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