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
4b507685
Commit
4b507685
authored
May 21, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
May 21, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Add support for SSPI authentication for HTTP.
parent
7eaf1fe2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
Makefile.in
dlls/wininet/Makefile.in
+1
-1
http.c
dlls/wininet/http.c
+0
-0
internet.h
dlls/wininet/internet.h
+4
-0
No files found.
dlls/wininet/Makefile.in
View file @
4b507685
...
...
@@ -6,7 +6,7 @@ VPATH = @srcdir@
MODULE
=
wininet.dll
IMPORTLIB
=
libwininet.
$(IMPLIBEXT)
IMPORTS
=
mpr shlwapi shell32 user32 advapi32 kernel32 ntdll
DELAYIMPORTS
=
crypt32
DELAYIMPORTS
=
secur32
crypt32
EXTRALIBS
=
@SOCKETLIBS@
C_SRCS
=
\
...
...
dlls/wininet/http.c
View file @
4b507685
This diff is collapsed.
Click to expand it.
dlls/wininet/internet.h
View file @
4b507685
...
...
@@ -166,6 +166,7 @@ typedef struct
LPWSTR
lpszHostName
;
/* the final destination of the request */
LPWSTR
lpszServerName
;
/* the name of the server we directly connect to */
LPWSTR
lpszUserName
;
LPWSTR
lpszPassword
;
INTERNET_PORT
nHostPort
;
/* the final destination port of the request */
INTERNET_PORT
nServerPort
;
/* the port of the server we directly connect to */
struct
sockaddr_in
socketAddress
;
...
...
@@ -184,6 +185,8 @@ typedef struct
}
HTTPHEADERW
,
*
LPHTTPHEADERW
;
struct
HttpAuthInfo
;
typedef
struct
{
WININETHANDLEHEADER
hdr
;
...
...
@@ -198,6 +201,7 @@ typedef struct
DWORD
dwContentRead
;
/* bytes of the content read so far */
HTTPHEADERW
*
pCustHeaders
;
DWORD
nCustHeaders
;
struct
HttpAuthInfo
*
pAuthInfo
;
}
WININETHTTPREQW
,
*
LPWININETHTTPREQW
;
...
...
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