Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
4fdab851
Commit
4fdab851
authored
Feb 06, 2010
by
Petar Maymounkov
Committed by
Russ Cox
Feb 06, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http: sort header keys when writing Response or Request to wire
R=rsc CC=golang-dev
https://golang.org/cl/203050
parent
ce85868a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
11 deletions
+24
-11
request.go
src/pkg/http/request.go
+3
-8
response.go
src/pkg/http/response.go
+21
-3
No files found.
src/pkg/http/request.go
View file @
4fdab851
...
...
@@ -49,6 +49,8 @@ type badStringError struct {
func
(
e
*
badStringError
)
String
()
string
{
return
fmt
.
Sprintf
(
"%s %q"
,
e
.
what
,
e
.
str
)
}
var
reqExcludeHeader
=
map
[
string
]
int
{
"Host"
:
0
,
"User-Agent"
:
0
,
"Referer"
:
0
}
// A Request represents a parsed HTTP request header.
type
Request
struct
{
Method
string
// GET, POST, PUT, etc.
...
...
@@ -169,14 +171,7 @@ func (req *Request) Write(w io.Writer) os.Error {
// from Request, and introduce Request methods along the lines of
// Response.{GetHeader,AddHeader} and string constants for "Host",
// "User-Agent" and "Referer".
for
k
,
v
:=
range
req
.
Header
{
// Host, User-Agent, and Referer were sent from structure fields
// above; ignore them if they also appear in req.Header.
if
k
==
"Host"
||
k
==
"User-Agent"
||
k
==
"Referer"
{
continue
}
io
.
WriteString
(
w
,
k
+
": "
+
v
+
"
\r\n
"
)
}
writeSortedKeyValue
(
w
,
req
.
Header
,
reqExcludeHeader
)
io
.
WriteString
(
w
,
"
\r\n
"
)
...
...
src/pkg/http/response.go
View file @
4fdab851
...
...
@@ -8,12 +8,16 @@ package http
import
(
"bufio"
"fmt"
"io"
"os"
"sort"
"strconv"
"strings"
)
var
respExcludeHeader
=
map
[
string
]
int
{}
// Response represents the response from an HTTP request.
//
type
Response
struct
{
...
...
@@ -455,9 +459,7 @@ func (resp *Response) Write(w io.Writer) os.Error {
}
// Rest of header
for
k
,
v
:=
range
resp
.
Header
{
io
.
WriteString
(
w
,
k
+
": "
+
v
+
"
\r\n
"
)
}
writeSortedKeyValue
(
w
,
resp
.
Header
,
respExcludeHeader
)
// End-of-header
io
.
WriteString
(
w
,
"
\r\n
"
)
...
...
@@ -491,3 +493,19 @@ func (resp *Response) Write(w io.Writer) os.Error {
// Success
return
nil
}
func
writeSortedKeyValue
(
w
io
.
Writer
,
kvm
map
[
string
]
string
,
exclude
map
[
string
]
int
)
{
kva
:=
make
([]
string
,
len
(
kvm
))
i
:=
0
for
k
,
v
:=
range
kvm
{
if
_
,
exc
:=
exclude
[
k
];
!
exc
{
kva
[
i
]
=
fmt
.
Sprint
(
k
+
": "
+
v
+
"
\r\n
"
)
i
++
}
}
kva
=
kva
[
0
:
i
]
sort
.
SortStrings
(
kva
)
for
_
,
l
:=
range
kva
{
io
.
WriteString
(
w
,
l
)
}
}
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