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
91acf625
Commit
91acf625
authored
Oct 13, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 13, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added nsIHttpChannel::VisitResponseHeaders implementation.
parent
71e7b1c5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
nsio.c
dlls/mshtml/nsio.c
+8
-2
No files found.
dlls/mshtml/nsio.c
View file @
91acf625
...
...
@@ -1247,10 +1247,16 @@ static nsresult NSAPI nsChannel_VisitResponseHeaders(nsIHttpChannel *iface,
static
nsresult
NSAPI
nsChannel_IsNoStoreResponse
(
nsIHttpChannel
*
iface
,
PRBool
*
_retval
)
{
nsChannel
*
This
=
NSCHANNEL_THIS
(
iface
);
http_header_t
*
header
;
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
_retval
);
static
const
WCHAR
cache_controlW
[]
=
{
'C'
,
'a'
,
'c'
,
'h'
,
'e'
,
'-'
,
'C'
,
'o'
,
'n'
,
't'
,
'r'
,
'o'
,
'l'
};
static
const
WCHAR
no_storeW
[]
=
{
'n'
,
'o'
,
'-'
,
's'
,
't'
,
'o'
,
'r'
,
'e'
,
0
};
return
NS_ERROR_NOT_IMPLEMENTED
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
_retval
);
header
=
find_http_header
(
&
This
->
response_headers
,
cache_controlW
,
sizeof
(
cache_controlW
)
/
sizeof
(
WCHAR
));
*
_retval
=
header
&&
!
strcmpiW
(
header
->
data
,
no_storeW
);
return
NS_OK
;
}
static
nsresult
NSAPI
nsChannel_IsNoCacheResponse
(
nsIHttpChannel
*
iface
,
PRBool
*
_retval
)
...
...
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