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
11a0e453
Commit
11a0e453
authored
May 06, 2008
by
Maarten Lankhorst
Committed by
Alexandre Julliard
May 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Ignore INTERNET_STATUS_DETECTING_PROXY messages in the http test.
parent
7c051f13
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
http.c
dlls/wininet/tests/http.c
+5
-0
wininet.h
include/wininet.h
+1
-0
No files found.
dlls/wininet/tests/http.c
View file @
11a0e453
...
...
@@ -192,6 +192,8 @@ static VOID WINAPI callback(
trace
(
"%04x:Callback %p 0x%lx INTERNET_STATUS_HANDLE_CREATED %p %d
\n
"
,
GetCurrentThreadId
(),
hInternet
,
dwContext
,
*
(
HINTERNET
*
)
lpvStatusInformation
,
dwStatusInformationLength
);
CLEAR_NOTIFIED
(
INTERNET_STATUS_DETECTING_PROXY
);
SET_EXPECT
(
INTERNET_STATUS_DETECTING_PROXY
);
break
;
case
INTERNET_STATUS_HANDLE_CLOSING
:
ok
(
dwStatusInformationLength
==
sizeof
(
HINTERNET
),
...
...
@@ -218,6 +220,8 @@ static VOID WINAPI callback(
GetCurrentThreadId
(),
hInternet
,
dwContext
,
(
LPCSTR
)
lpvStatusInformation
,
dwStatusInformationLength
);
*
(
LPSTR
)
lpvStatusInformation
=
'\0'
;
CLEAR_NOTIFIED
(
INTERNET_STATUS_DETECTING_PROXY
);
SET_EXPECT
(
INTERNET_STATUS_DETECTING_PROXY
);
break
;
case
INTERNET_STATUS_INTERMEDIATE_RESPONSE
:
trace
(
"%04x:Callback %p 0x%lx INTERNET_STATUS_INTERMEDIATE_RESPONSE %p %d
\n
"
,
...
...
@@ -1767,6 +1771,7 @@ static void init_status_tests(void)
STATUS_STRING
(
INTERNET_STATUS_CONNECTION_CLOSED
);
STATUS_STRING
(
INTERNET_STATUS_HANDLE_CREATED
);
STATUS_STRING
(
INTERNET_STATUS_HANDLE_CLOSING
);
STATUS_STRING
(
INTERNET_STATUS_DETECTING_PROXY
);
STATUS_STRING
(
INTERNET_STATUS_REQUEST_COMPLETE
);
STATUS_STRING
(
INTERNET_STATUS_REDIRECT
);
STATUS_STRING
(
INTERNET_STATUS_INTERMEDIATE_RESPONSE
);
...
...
include/wininet.h
View file @
11a0e453
...
...
@@ -644,6 +644,7 @@ INTERNETAPI INTERNET_STATUS_CALLBACK WINAPI InternetSetStatusCallbackW(HINTERNET
#define INTERNET_STATUS_CONNECTION_CLOSED 51
#define INTERNET_STATUS_HANDLE_CREATED 60
#define INTERNET_STATUS_HANDLE_CLOSING 70
#define INTERNET_STATUS_DETECTING_PROXY 80
#define INTERNET_STATUS_REQUEST_COMPLETE 100
#define INTERNET_STATUS_REDIRECT 110
#define INTERNET_STATUS_INTERMEDIATE_RESPONSE 120
...
...
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