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
2098006d
Commit
2098006d
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 HTTP request member names.
parent
8e050391
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
17 deletions
+17
-17
dialogs.c
dlls/wininet/dialogs.c
+3
-3
http.c
dlls/wininet/http.c
+0
-0
internet.h
dlls/wininet/internet.h
+14
-14
No files found.
dlls/wininet/dialogs.c
View file @
2098006d
...
...
@@ -74,7 +74,7 @@ static BOOL WININET_GetProxyServer( HINTERNET hRequest, LPWSTR szBuf, DWORD sz )
if
(
NULL
==
request
)
return
FALSE
;
session
=
request
->
lpHttpS
ession
;
session
=
request
->
s
ession
;
if
(
NULL
==
session
)
goto
done
;
...
...
@@ -111,7 +111,7 @@ static BOOL WININET_GetServer( HINTERNET hRequest, LPWSTR szBuf, DWORD sz )
if
(
NULL
==
request
)
return
FALSE
;
session
=
request
->
lpHttpS
ession
;
session
=
request
->
s
ession
;
if
(
NULL
==
session
)
goto
done
;
...
...
@@ -250,7 +250,7 @@ static BOOL WININET_SetAuthorization( HINTERNET hRequest, LPWSTR username,
if
(
!
request
)
return
FALSE
;
session
=
request
->
lpHttpS
ession
;
session
=
request
->
s
ession
;
if
(
NULL
==
session
||
session
->
hdr
.
htype
!=
WH_HHTTPSESSION
)
{
INTERNET_SetLastError
(
ERROR_INTERNET_INCORRECT_HANDLE_TYPE
);
...
...
dlls/wininet/http.c
View file @
2098006d
This diff is collapsed.
Click to expand it.
dlls/wininet/internet.h
View file @
2098006d
...
...
@@ -263,25 +263,25 @@ typedef struct gzip_stream_t gzip_stream_t;
typedef
struct
{
object_header_t
hdr
;
http_session_t
*
lpHttpS
ession
;
LPWSTR
lpszP
ath
;
LPWSTR
lpszV
erb
;
LPWSTR
lpszR
awHeaders
;
http_session_t
*
s
ession
;
LPWSTR
p
ath
;
LPWSTR
v
erb
;
LPWSTR
r
awHeaders
;
WININET_NETCONNECTION
netConnection
;
LPWSTR
lpszV
ersion
;
LPWSTR
lpszS
tatusText
;
DWORD
dwB
ytesToWrite
;
DWORD
dwB
ytesWritten
;
HTTPHEADERW
*
pC
ustHeaders
;
LPWSTR
v
ersion
;
LPWSTR
s
tatusText
;
DWORD
b
ytesToWrite
;
DWORD
b
ytesWritten
;
HTTPHEADERW
*
c
ustHeaders
;
DWORD
nCustHeaders
;
HANDLE
hCacheFile
;
LPWSTR
lpszC
acheFile
;
struct
HttpAuthInfo
*
pA
uthInfo
;
struct
HttpAuthInfo
*
p
P
roxyAuthInfo
;
LPWSTR
c
acheFile
;
struct
HttpAuthInfo
*
a
uthInfo
;
struct
HttpAuthInfo
*
proxyAuthInfo
;
CRITICAL_SECTION
read_section
;
/* section to protect the following fields */
DWORD
dwContentLength
;
/* total number of bytes to be read */
DWORD
dwContentRead
;
/* bytes of the content read so far */
DWORD
contentLength
;
/* total number of bytes to be read */
DWORD
contentRead
;
/* bytes of the content read so far */
BOOL
read_chunked
;
/* are we reading in chunked mode? */
DWORD
read_pos
;
/* current read position in read_buf */
DWORD
read_size
;
/* valid data size in read_buf */
...
...
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