Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(888)

Delta Between Two Patch Sets: src/pkg/net/textproto/header.go

Issue 4185053: code review 4185053: http: introduce Header type, implement with net/textproto (Closed)
Left Patch Set: Created 14 years, 1 month ago
Right Patch Set: diff -r 2058371f94f0 https://go.googlecode.com/hg/ Created 14 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/net/textproto/Makefile ('k') | src/pkg/net/textproto/reader.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package textproto
6
7 // A MIMEHeader represents a MIME-style header mapping
8 // keys to sets of values.
9 type MIMEHeader map[string][]string
10
11 // Add adds the key, value pair to the header.
12 // It appends to any existing values associated with key.
13 func (h MIMEHeader) Add(key, value string) {
14 key = CanonicalMIMEHeaderKey(key)
15 h[key] = append(h[key], value)
16 }
17
18 // Set sets the header entries associated with key to
19 // the single element value. It replaces any existing
20 // values associated with key.
21 func (h MIMEHeader) Set(key, value string) {
22 h[CanonicalMIMEHeaderKey(key)] = []string{value}
23 }
24
25 // Get gets the first value associated with the given key.
26 // If there are no values associated with the key, Get returns "".
27 // Get is a convenience method. For more complex queries,
28 // access the map directly.
29 func (h MIMEHeader) Get(key string) string {
30 if h == nil {
31 return ""
32 }
33 v := h[CanonicalMIMEHeaderKey(key)]
34 if len(v) == 0 {
35 return ""
36 }
37 return v[0]
38 }
39
40 // Del deletes the values associated with key.
41 func (h MIMEHeader) Del(key string) {
42 h[CanonicalMIMEHeaderKey(key)] = nil, false
43 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b