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
8e050391
Commit
8e050391
authored
Mar 01, 2011
by
Juan Lang
Committed by
Alexandre Julliard
Mar 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: De-Hungarian session member names.
parent
7243156b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
14 deletions
+14
-14
dialogs.c
dlls/wininet/dialogs.c
+7
-7
http.c
dlls/wininet/http.c
+0
-0
internet.h
dlls/wininet/internet.h
+7
-7
No files found.
dlls/wininet/dialogs.c
View file @
8e050391
...
...
@@ -78,7 +78,7 @@ static BOOL WININET_GetProxyServer( HINTERNET hRequest, LPWSTR szBuf, DWORD sz )
if
(
NULL
==
session
)
goto
done
;
hIC
=
session
->
lpA
ppInfo
;
hIC
=
session
->
a
ppInfo
;
if
(
NULL
==
hIC
)
goto
done
;
...
...
@@ -115,7 +115,7 @@ static BOOL WININET_GetServer( HINTERNET hRequest, LPWSTR szBuf, DWORD sz )
if
(
NULL
==
session
)
goto
done
;
lstrcpynW
(
szBuf
,
session
->
lpszH
ostName
,
sz
);
lstrcpynW
(
szBuf
,
session
->
h
ostName
,
sz
);
ret
=
TRUE
;
...
...
@@ -270,7 +270,7 @@ static BOOL WININET_SetAuthorization( HINTERNET hRequest, LPWSTR username,
if
(
proxy
)
{
appinfo_t
*
hIC
=
session
->
lpA
ppInfo
;
appinfo_t
*
hIC
=
session
->
a
ppInfo
;
HeapFree
(
GetProcessHeap
(),
0
,
hIC
->
proxyUsername
);
hIC
->
proxyUsername
=
p
;
...
...
@@ -280,11 +280,11 @@ static BOOL WININET_SetAuthorization( HINTERNET hRequest, LPWSTR username,
}
else
{
HeapFree
(
GetProcessHeap
(),
0
,
session
->
lpszU
serName
);
session
->
lpszU
serName
=
p
;
HeapFree
(
GetProcessHeap
(),
0
,
session
->
u
serName
);
session
->
u
serName
=
p
;
HeapFree
(
GetProcessHeap
(),
0
,
session
->
lpszP
assword
);
session
->
lpszP
assword
=
q
;
HeapFree
(
GetProcessHeap
(),
0
,
session
->
p
assword
);
session
->
p
assword
=
q
;
}
ret
=
TRUE
;
...
...
dlls/wininet/http.c
View file @
8e050391
This diff is collapsed.
Click to expand it.
dlls/wininet/internet.h
View file @
8e050391
...
...
@@ -232,13 +232,13 @@ typedef struct
typedef
struct
{
object_header_t
hdr
;
appinfo_t
*
lpA
ppInfo
;
LPWSTR
lpszH
ostName
;
/* the final destination of the request */
LPWSTR
lpszS
erverName
;
/* the name of the server we directly connect to */
LPWSTR
lpszU
serName
;
LPWSTR
lpszP
assword
;
INTERNET_PORT
nH
ostPort
;
/* the final destination port of the request */
INTERNET_PORT
nS
erverPort
;
/* the port of the server we directly connect to */
appinfo_t
*
a
ppInfo
;
LPWSTR
h
ostName
;
/* the final destination of the request */
LPWSTR
s
erverName
;
/* the name of the server we directly connect to */
LPWSTR
u
serName
;
LPWSTR
p
assword
;
INTERNET_PORT
h
ostPort
;
/* the final destination port of the request */
INTERNET_PORT
s
erverPort
;
/* the port of the server we directly connect to */
struct
sockaddr_storage
socketAddress
;
socklen_t
sa_len
;
}
http_session_t
;
...
...
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