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

Issue 4435055: code review 4435055: http/spdy: new package (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
13 years, 11 months ago by Ross Light
Modified:
13 years, 10 months ago
Reviewers:
CC:
bradfitz, agl1, rsc, golang-dev
Visibility:
Public.

Description

http/spdy: new package

Patch Set 1 #

Patch Set 2 : diff -r 3589ecb41d80 https://go.googlecode.com/hg/ #

Patch Set 3 : diff -r 3589ecb41d80 https://go.googlecode.com/hg/ #

Total comments: 22

Patch Set 4 : diff -r 2b3a54a4ad6c https://go.googlecode.com/hg/ #

Total comments: 20

Patch Set 5 : diff -r 2b3a54a4ad6c https://go.googlecode.com/hg/ #

Total comments: 2

Patch Set 6 : diff -r 2b3a54a4ad6c https://go.googlecode.com/hg/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+638 lines, -0 lines) Patch
M src/pkg/Makefile View 1 1 chunk +1 line, -0 lines 0 comments Download
A src/pkg/http/spdy/Makefile View 1 1 chunk +11 lines, -0 lines 0 comments Download
A src/pkg/http/spdy/protocol.go View 1 2 3 4 5 1 chunk +367 lines, -0 lines 0 comments Download
A src/pkg/http/spdy/protocol_test.go View 1 2 3 1 chunk +259 lines, -0 lines 0 comments Download

Messages

Total messages: 9
Ross Light
Hello bradfitzgo (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://go.googlecode.com/hg/
13 years, 11 months ago (2011-04-18 23:05:36 UTC) #1
bradfitz
Random comments... (just bouncing all over. Not a thorough review yet.) Other Gophers will probably ...
13 years, 11 months ago (2011-04-19 00:22:27 UTC) #2
Ross Light
Brad: Here's the new version of the package. I reorganized the types so that there ...
13 years, 11 months ago (2011-04-21 17:50:52 UTC) #3
agl1
This package is very public, but as a subpackage of http, I'm assuming that's intended. ...
13 years, 11 months ago (2011-04-21 18:13:19 UTC) #4
Ross Light
Changes made. http://codereview.appspot.com/4435055/diff/3/src/pkg/http/spdy/protocol.go File src/pkg/http/spdy/protocol.go (right): http://codereview.appspot.com/4435055/diff/3/src/pkg/http/spdy/protocol.go#newcode63 src/pkg/http/spdy/protocol.go:63: return fmt.Sprintf("Type(%#04x)", uint16(t)) On 2011/04/21 18:13:19, agl1 ...
13 years, 11 months ago (2011-04-21 18:42:12 UTC) #5
rsc
http://codereview.appspot.com/4435055/diff/12001/src/pkg/http/spdy/protocol.go File src/pkg/http/spdy/protocol.go (right): http://codereview.appspot.com/4435055/diff/12001/src/pkg/http/spdy/protocol.go#newcode212 src/pkg/http/spdy/protocol.go:212: const headerDictionary = "optionsgetheadpostputdeletetraceacceptaccept-charsetaccept-encodingaccept-languageauthorizationexpectfromhostif-modified-sinceif-matchif-none-matchif-rangeif-unmodifiedsincemax-forwardsproxy-authorizationrangerefererteuser-agent100101200201202203204205206300301302303304305306307400401402403404405406407408409410411412413414415416417500501502503504505accept-rangesageetaglocationproxy-authenticatepublicretry-afterservervarywarningwww-authenticateallowcontent-basecontent-encodingcache-controlconnectiondatetrailertransfer-encodingupgradeviawarningcontent-languagecontent-lengthcontent-locationcontent-md5content-rangecontent-typeetagexpireslast-modifiedset-cookieMondayTuesdayWednesdayThursdayFridaySaturdaySundayJanFebMarAprMayJunJulAugSepOctNovDecchunkedtext/htmlimage/pngimage/jpgimage/gifapplication/xmlapplication/xhtmltext/plainpublicmax-agecharset=iso-8859-1utf-8gzipdeflateHTTP/1.1statusversionurl\x00" Please break this string onto ...
13 years, 11 months ago (2011-04-21 19:19:39 UTC) #6
Ross Light
http://codereview.appspot.com/4435055/diff/12001/src/pkg/http/spdy/protocol.go File src/pkg/http/spdy/protocol.go (right): http://codereview.appspot.com/4435055/diff/12001/src/pkg/http/spdy/protocol.go#newcode212 src/pkg/http/spdy/protocol.go:212: const headerDictionary = "optionsgetheadpostputdeletetraceacceptaccept-charsetaccept-encodingaccept-languageauthorizationexpectfromhostif-modified-sinceif-matchif-none-matchif-rangeif-unmodifiedsincemax-forwardsproxy-authorizationrangerefererteuser-agent100101200201202203204205206300301302303304305306307400401402403404405406407408409410411412413414415416417500501502503504505accept-rangesageetaglocationproxy-authenticatepublicretry-afterservervarywarningwww-authenticateallowcontent-basecontent-encodingcache-controlconnectiondatetrailertransfer-encodingupgradeviawarningcontent-languagecontent-lengthcontent-locationcontent-md5content-rangecontent-typeetagexpireslast-modifiedset-cookieMondayTuesdayWednesdayThursdayFridaySaturdaySundayJanFebMarAprMayJunJulAugSepOctNovDecchunkedtext/htmlimage/pngimage/jpgimage/gifapplication/xmlapplication/xhtmltext/plainpublicmax-agecharset=iso-8859-1utf-8gzipdeflateHTTP/1.1statusversionurl\x00" On 2011/04/21 19:19:39, rsc wrote: ...
13 years, 11 months ago (2011-04-21 19:32:42 UTC) #7
rsc
LGTM
13 years, 10 months ago (2011-04-28 18:46:06 UTC) #8
bradfitz
13 years, 10 months ago (2011-04-28 20:11:40 UTC) #9
*** Submitted as http://code.google.com/p/go/source/detail?r=12b47b318d2d ***

http/spdy: new package

R=bradfitz, agl1, rsc
CC=golang-dev
http://codereview.appspot.com/4435055

Committer: Brad Fitzpatrick <bradfitz@golang.org>
Sign in to reply to this message.

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