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
8c20124f
Commit
8c20124f
authored
Sep 24, 2008
by
Hans Leidekker
Committed by
Alexandre Julliard
Sep 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Support setting username and password through options.
parent
319f2855
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
1 deletion
+22
-1
http.c
dlls/wininet/http.c
+22
-1
No files found.
dlls/wininet/http.c
View file @
8c20124f
...
...
@@ -3484,11 +3484,32 @@ static DWORD HTTPSESSION_QueryOption(WININETHANDLEHEADER *hdr, DWORD option, voi
return
INET_QueryOption
(
option
,
buffer
,
size
,
unicode
);
}
static
DWORD
HTTPSESSION_SetOption
(
WININETHANDLEHEADER
*
hdr
,
DWORD
option
,
void
*
buffer
,
DWORD
size
)
{
WININETHTTPSESSIONW
*
ses
=
(
WININETHTTPSESSIONW
*
)
hdr
;
switch
(
option
)
{
case
INTERNET_OPTION_USERNAME
:
{
if
(
!
(
ses
->
lpszUserName
=
WININET_strdupW
(
buffer
)))
break
;
return
ERROR_SUCCESS
;
}
case
INTERNET_OPTION_PASSWORD
:
{
if
(
!
(
ses
->
lpszPassword
=
WININET_strdupW
(
buffer
)))
break
;
return
ERROR_SUCCESS
;
}
default:
break
;
}
return
ERROR_INTERNET_INVALID_OPTION
;
}
static
const
HANDLEHEADERVtbl
HTTPSESSIONVtbl
=
{
HTTPSESSION_Destroy
,
NULL
,
HTTPSESSION_QueryOption
,
NULL
,
HTTPSESSION_SetOption
,
NULL
,
NULL
,
NULL
,
...
...
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