Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Issue 10957038: net: separate SPDY cookies with "; " as the new RFC requires. (Closed)

Created:
8 years, 3 months ago by agl
Modified:
8 years, 3 months ago
CC:
chromium-reviews, cbentzel+watch_chromium.org, darin-cc_chromium.org
Visibility:
Public.

Description

net: separate SPDY cookie with "; " as the new RFC requires. Previously, SPDY cookies would look like: "FOO=BAR;BAR=BOO;WIBBLE=WOBBLE;" With this patch they will look like: "FOO=BAR; BAR=BOO; WIBBLE=WOBBLE" This will hurt compression a little as cookies are only matched completely so: Cookie: FOO=BAR |-----| won't match against the next Cookie header with an additional cookie: Cookie: FOO=BAR; BAR=BOO |------||------| However, once the set of cookies is stable, it does fine. BUG=151433 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=158088

Patch Set 1 #

Patch Set 2 : g cl try #

Total comments: 2

Patch Set 3 : address willchan's comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+58 lines, -39 lines) Patch
M net/spdy/spdy_framer.cc View 1 2 2 chunks +25 lines, -16 lines 0 comments Download
M third_party/zlib/deflate.h View 1 chunk +1 line, -1 line 0 comments Download
M third_party/zlib/deflate.c View 1 3 chunks +10 lines, -5 lines 0 comments Download
M third_party/zlib/mixed-source.patch View 13 chunks +22 lines, -17 lines 0 comments Download

Messages

Total messages: 5 (0 generated)
agl
8 years, 3 months ago (2012-09-21 14:44:40 UTC) #1
willchan no longer on Chromium
lgtm https://codereview.chromium.org/10957038/diff/2001/net/spdy/spdy_framer.cc File net/spdy/spdy_framer.cc (right): https://codereview.chromium.org/10957038/diff/2001/net/spdy/spdy_framer.cc#newcode787 net/spdy/spdy_framer.cc:787: } else if (i < cookie_values.size()-1) { stupid ...
8 years, 3 months ago (2012-09-21 15:57:52 UTC) #2
agl
https://codereview.chromium.org/10957038/diff/2001/net/spdy/spdy_framer.cc File net/spdy/spdy_framer.cc (right): https://codereview.chromium.org/10957038/diff/2001/net/spdy/spdy_framer.cc#newcode787 net/spdy/spdy_framer.cc:787: } else if (i < cookie_values.size()-1) { On 2012/09/21 ...
8 years, 3 months ago (2012-09-21 18:11:59 UTC) #3
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/agl@chromium.org/10957038/7001
8 years, 3 months ago (2012-09-21 18:12:20 UTC) #4
commit-bot: I haz the power
8 years, 3 months ago (2012-09-21 21:49:15 UTC) #5
Change committed as 158088

Powered by Google App Engine
This is Rietveld 408576698