Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3c114a88
Commit
3c114a88
authored
Dec 28, 2008
by
Henri Verbeet
Committed by
Alexandre Julliard
Dec 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Add stubs for schannel QueryContextAttributesA() and QueryContextAttributesW().
parent
24c5e6ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
2 deletions
+30
-2
schannel.c
dlls/secur32/schannel.c
+30
-2
No files found.
dlls/secur32/schannel.c
View file @
3c114a88
...
...
@@ -800,6 +800,34 @@ static SECURITY_STATUS SEC_ENTRY schan_InitializeSecurityContextA(
return
ret
;
}
static
SECURITY_STATUS
SEC_ENTRY
schan_QueryContextAttributesW
(
PCtxtHandle
context_handle
,
ULONG
attribute
,
PVOID
buffer
)
{
TRACE
(
"context_handle %p, attribute %#x, buffer %p
\n
"
,
context_handle
,
attribute
,
buffer
);
switch
(
attribute
)
{
default:
FIXME
(
"Unhandled attribute %#x
\n
"
,
attribute
);
return
SEC_E_UNSUPPORTED_FUNCTION
;
}
}
static
SECURITY_STATUS
SEC_ENTRY
schan_QueryContextAttributesA
(
PCtxtHandle
context_handle
,
ULONG
attribute
,
PVOID
buffer
)
{
TRACE
(
"context_handle %p, attribute %#x, buffer %p
\n
"
,
context_handle
,
attribute
,
buffer
);
switch
(
attribute
)
{
default:
FIXME
(
"Unhandled attribute %#x
\n
"
,
attribute
);
return
SEC_E_UNSUPPORTED_FUNCTION
;
}
}
static
SECURITY_STATUS
SEC_ENTRY
schan_DeleteSecurityContext
(
PCtxtHandle
context_handle
)
{
struct
schan_context
*
ctx
;
...
...
@@ -834,7 +862,7 @@ static const SecurityFunctionTableA schanTableA = {
NULL
,
/* CompleteAuthToken */
schan_DeleteSecurityContext
,
NULL
,
/* ApplyControlToken */
NULL
,
/* QueryContextAttributesA */
schan_QueryContextAttributesA
,
NULL
,
/* ImpersonateSecurityContext */
NULL
,
/* RevertSecurityContext */
NULL
,
/* MakeSignature */
...
...
@@ -865,7 +893,7 @@ static const SecurityFunctionTableW schanTableW = {
NULL
,
/* CompleteAuthToken */
schan_DeleteSecurityContext
,
NULL
,
/* ApplyControlToken */
NULL
,
/* QueryContextAttributesW */
schan_QueryContextAttributesW
,
NULL
,
/* ImpersonateSecurityContext */
NULL
,
/* RevertSecurityContext */
NULL
,
/* MakeSignature */
...
...
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