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
5015f388
Commit
5015f388
authored
Mar 13, 2011
by
Ken Thomases
Committed by
Alexandre Julliard
Mar 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Add alternative schannel implementation for Mac OS X.
It uses the native Secure Transport API rather than GnuTLS.
parent
25ed687f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
5 deletions
+7
-5
Makefile.in
dlls/secur32/Makefile.in
+2
-0
schannel.c
dlls/secur32/schannel.c
+3
-3
schannel_gnutls.c
dlls/secur32/schannel_gnutls.c
+2
-2
schannel_macosx.c
dlls/secur32/schannel_macosx.c
+0
-0
No files found.
dlls/secur32/Makefile.in
View file @
5015f388
...
@@ -3,6 +3,7 @@ IMPORTLIB = secur32
...
@@ -3,6 +3,7 @@ IMPORTLIB = secur32
IMPORTS
=
netapi32 advapi32
IMPORTS
=
netapi32 advapi32
DELAYIMPORTS
=
crypt32
DELAYIMPORTS
=
crypt32
EXTRAINCL
=
@GNUTLSINCL@
EXTRAINCL
=
@GNUTLSINCL@
EXTRALIBS
=
@SECURITYLIB@
C_SRCS
=
\
C_SRCS
=
\
base64_codec.c
\
base64_codec.c
\
...
@@ -13,6 +14,7 @@ C_SRCS = \
...
@@ -13,6 +14,7 @@ C_SRCS = \
ntlm.c
\
ntlm.c
\
schannel.c
\
schannel.c
\
schannel_gnutls.c
\
schannel_gnutls.c
\
schannel_macosx.c
\
secur32.c
\
secur32.c
\
thunks.c
\
thunks.c
\
util.c
\
util.c
\
...
...
dlls/secur32/schannel.c
View file @
5015f388
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
secur32
);
WINE_DEFAULT_DEBUG_CHANNEL
(
secur32
);
#if
def SONAME_LIBGNUTLS
#if
defined(SONAME_LIBGNUTLS) || defined (HAVE_SECURITY_SECURITY_H)
#define SCHAN_INVALID_HANDLE ~0UL
#define SCHAN_INVALID_HANDLE ~0UL
...
@@ -1316,7 +1316,7 @@ void SECUR32_deinitSchannelSP(void)
...
@@ -1316,7 +1316,7 @@ void SECUR32_deinitSchannelSP(void)
schan_imp_deinit
();
schan_imp_deinit
();
}
}
#else
/* SONAME_LIBGNUTLS */
#else
/* SONAME_LIBGNUTLS
|| HAVE_SECURITY_SECURITY_H
*/
void
SECUR32_initSchannelSP
(
void
)
void
SECUR32_initSchannelSP
(
void
)
{
{
...
@@ -1325,4 +1325,4 @@ void SECUR32_initSchannelSP(void)
...
@@ -1325,4 +1325,4 @@ void SECUR32_initSchannelSP(void)
void
SECUR32_deinitSchannelSP
(
void
)
{}
void
SECUR32_deinitSchannelSP
(
void
)
{}
#endif
/* SONAME_LIBGNUTLS */
#endif
/* SONAME_LIBGNUTLS
|| HAVE_SECURITY_SECURITY_H
*/
dlls/secur32/schannel_gnutls.c
View file @
5015f388
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
secur32
);
WINE_DEFAULT_DEBUG_CHANNEL
(
secur32
);
#if
def SONAME_LIBGNUTLS
#if
defined(SONAME_LIBGNUTLS) && !defined(HAVE_SECURITY_SECURITY_H)
static
void
*
libgnutls_handle
;
static
void
*
libgnutls_handle
;
#define MAKE_FUNCPTR(f) static typeof(f) * p##f
#define MAKE_FUNCPTR(f) static typeof(f) * p##f
...
@@ -459,4 +459,4 @@ void schan_imp_deinit(void)
...
@@ -459,4 +459,4 @@ void schan_imp_deinit(void)
libgnutls_handle
=
NULL
;
libgnutls_handle
=
NULL
;
}
}
#endif
/* SONAME_LIBGNUTLS */
#endif
/* SONAME_LIBGNUTLS
&& !HAVE_SECURITY_SECURITY_H
*/
dlls/secur32/schannel_macosx.c
0 → 100644
View file @
5015f388
This diff is collapsed.
Click to expand it.
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