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
664b9bbb
Commit
664b9bbb
authored
Dec 17, 2001
by
Johan Dahlin
Committed by
Alexandre Julliard
Dec 17, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a few extra fields to HTTP_GetStdHeaderIndex.
parent
70b7619a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
http.c
dlls/wininet/http.c
+8
-0
No files found.
dlls/wininet/http.c
View file @
664b9bbb
...
...
@@ -1043,6 +1043,14 @@ INT HTTP_GetStdHeaderIndex(LPCSTR lpszField)
index
=
HTTP_QUERY_EXPIRES
;
else
if
(
!
strcasecmp
(
lpszField
,
"Mime-Version"
))
index
=
HTTP_QUERY_MIME_VERSION
;
else
if
(
!
strcasecmp
(
lpszField
,
"Pragma"
))
index
=
HTTP_QUERY_PRAGMA
;
else
if
(
!
strcasecmp
(
lpszField
,
"Cache-Control"
))
index
=
HTTP_QUERY_CACHE_CONTROL
;
else
if
(
!
strcasecmp
(
lpszField
,
"Content-Length"
))
index
=
HTTP_QUERY_CONTENT_LENGTH
;
else
if
(
!
strcasecmp
(
lpszField
,
"User-Agent"
))
index
=
HTTP_QUERY_USER_AGENT
;
else
{
FIXME
(
"Couldn't find %s in standard header table
\n
"
,
lpszField
);
...
...
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