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

Issue 1541263002: Landing Recent QUIC changes until 12/18/2015 13:57 UTC (Closed)

Created:
5 years ago by Fan Yang
Modified:
4 years, 12 months ago
Reviewers:
Ryan Hamilton
CC:
chromium-reviews, cbentzel+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Landing Recent QUIC changes until 12/18/2015 13:57 UTC relnote: Replace last remaining NULLs in gfe/quic with nullptr. No behavior change. Merge internal change: 110570650 https://codereview.chromium.org/1542753004/ relnote: Add PushResponse() in QuicSimpleServerStream. Merge internal change: 110554875 https://codereview.chromium.org/1545793002/ relnote: Adding details to most quic connection close calls. This is a precursor to removing CloseConnection[without details] entirely. This is so we can to be able disambiguate various causes of specific error codes when logging them server side. We can always add more details where useful at a later point. Merge internal change: 110546286 https://codereview.chromium.org/1548783002/ relnote: Add path_id to QuicSentPacketManager and QuicSentPacketManager::PendingRetransmission. No functional change. Merge internal change: 110540464 https://codereview.chromium.org/1542773004/ relnote: Add class QuicMultipathReceivedPacketManager (not in use currently). Merge internal change: 110454683 https://codereview.chromium.org/1548703002/ relnote: If the user supplied a request body in hex, print response body in hex as well. In addition, convert hex in both cases to printable ASCII characters where possible. Example output: Request: headers: { :authority:test.example.com :path:/net.grpc.examples.QuicGreeter/SayHello :scheme:http :method:POST te:trailers grpc-encoding:identity grpc-accept-encoding:identity,deflate,gzip content-type:application/grpc user-agent:grpc-c++/0.12.0.0 grpc-c/0.12.0.0 (linux) } body hex: 00000000070a05776f726c64 body ascii: . . . . . . . w o r l d Response: headers: HTTP/1.1 200 OK grpc-encoding: identity grpc-accept-encoding: identity,deflate,gzip content-type: application/grpc body hex: 0a0b48656c6c6f20776f726c64 body ascii: . . H e l l o w o r l d trailers: { grpc-status:0 } Request succeeded (200). Merge internal change: 110446931 https://codereview.chromium.org/1545703002/ relnote: Drop not awaited packets before decrypt them. Merge internal change: 110403572 https://codereview.chromium.org/1546633002/ relnote: Add path_id to SerializedPacket. No functional change. Merge internal change: 110393215 https://codereview.chromium.org/1542123002/ relnote: Drop packets which are larger than kMaxPacketSize, instead of closing the connection with QUIC_PACKET_TOO_LARGE. Not flag protected. Merge internal change: 110290154 https://codereview.chromium.org/1543703002/ relnote: Adds a DCHECK that the host argument to QuicInMemoryCache::AddResponse is not empty. An empty host works fine in google3, but breaks tests in Chromium for $reasons. Merge internal change: 110286048 https://codereview.chromium.org/1544563002/ relnote: Delete unused methods in QuicServerSession Merge internal change: 110254138 https://codereview.chromium.org/1539333003/ relnote: If message body specified with --body_hex then print out the user provided string rather than the binary body. Merge internal change: 110244865 https://codereview.chromium.org/1538373002/ R=rch@chromium.org Committed: https://crrev.com/a31a74b13ef5d8c7252138f147a5716c9682cab7 Cr-Commit-Position: refs/heads/master@{#366986}

Patch Set 1 : After rebase #

Patch Set 2 : fix usigned long long #

Patch Set 3 : #

Patch Set 4 : fix unsigned long #

Patch Set 5 : use static_cast<size_t> #

Patch Set 6 : #

Patch Set 7 : rebase again. #

Patch Set 8 : rebase after christmas #

Patch Set 9 : delete base/basictypes.h and replace uint32 with uint32_t #

Patch Set 10 : replace -1 with 0xff for InvalidPathId #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1077 lines, -263 lines) Patch
M net/net.gypi View 2 chunks +3 lines, -0 lines 0 comments Download
M net/quic/congestion_control/general_loss_algorithm_test.cc View 1 chunk +3 lines, -3 lines 0 comments Download
M net/quic/congestion_control/tcp_loss_algorithm_test.cc View 1 chunk +3 lines, -3 lines 0 comments Download
M net/quic/congestion_control/time_loss_algorithm_test.cc View 1 chunk +3 lines, -3 lines 0 comments Download
M net/quic/crypto/aes_128_gcm_12_decrypter_test.cc View 6 chunks +13 lines, -13 lines 0 comments Download
M net/quic/crypto/aes_128_gcm_12_encrypter_test.cc View 7 chunks +7 lines, -7 lines 0 comments Download
M net/quic/crypto/chacha20_poly1305_decrypter_test.cc View 4 chunks +5 lines, -5 lines 0 comments Download
M net/quic/crypto/chacha20_poly1305_encrypter_test.cc View 2 chunks +2 lines, -2 lines 0 comments Download
M net/quic/crypto/channel_id_test.cc View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/crypto/crypto_framer.h View 2 chunks +3 lines, -0 lines 0 comments Download
M net/quic/crypto/crypto_framer.cc View 7 chunks +9 lines, -1 line 0 comments Download
M net/quic/crypto/quic_crypto_server_config_test.cc View 2 chunks +3 lines, -3 lines 0 comments Download
M net/quic/quic_connection.h View 1 chunk +6 lines, -2 lines 0 comments Download
M net/quic/quic_connection.cc View 1 2 3 4 5 6 7 18 chunks +52 lines, -24 lines 0 comments Download
M net/quic/quic_connection_test.cc View 27 chunks +106 lines, -38 lines 0 comments Download
M net/quic/quic_crypto_client_stream.cc View 6 chunks +13 lines, -6 lines 0 comments Download
M net/quic/quic_crypto_client_stream_test.cc View 3 chunks +8 lines, -4 lines 0 comments Download
M net/quic/quic_crypto_server_stream.cc View 2 chunks +9 lines, -4 lines 0 comments Download
M net/quic/quic_crypto_server_stream_test.cc View 2 chunks +5 lines, -5 lines 0 comments Download
M net/quic/quic_crypto_stream.cc View 1 chunk +2 lines, -1 line 0 comments Download
M net/quic/quic_crypto_stream_test.cc View 1 chunk +2 lines, -1 line 0 comments Download
M net/quic/quic_flags.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/quic_flags.cc View 1 chunk +3 lines, -0 lines 0 comments Download
M net/quic/quic_flow_controller.cc View 1 2 3 4 5 6 7 8 2 chunks +8 lines, -1 line 0 comments Download
M net/quic/quic_flow_controller_test.cc View 2 chunks +4 lines, -2 lines 0 comments Download
M net/quic/quic_framer.cc View 1 chunk +2 lines, -1 line 0 comments Download
M net/quic/quic_framer_test.cc View 1 chunk +1 line, -1 line 0 comments Download
A net/quic/quic_multipath_received_packet_manager.h View 1 chunk +78 lines, -0 lines 0 comments Download
A net/quic/quic_multipath_received_packet_manager.cc View 1 2 3 4 5 6 7 8 1 chunk +147 lines, -0 lines 0 comments Download
A net/quic/quic_multipath_received_packet_manager_test.cc View 1 2 3 4 1 chunk +184 lines, -0 lines 0 comments Download
M net/quic/quic_packet_creator.cc View 3 chunks +10 lines, -9 lines 0 comments Download
M net/quic/quic_packet_creator_test.cc View 1 2 3 4 5 1 chunk +46 lines, -0 lines 0 comments Download
M net/quic/quic_protocol.h View 1 2 3 4 5 6 7 8 9 4 chunks +8 lines, -3 lines 0 comments Download
M net/quic/quic_protocol.cc View 4 chunks +5 lines, -1 line 0 comments Download
M net/quic/quic_received_packet_manager.h View 3 chunks +9 lines, -9 lines 0 comments Download
M net/quic/quic_received_packet_manager.cc View 1 chunk +4 lines, -0 lines 0 comments Download
M net/quic/quic_sent_packet_manager.h View 3 chunks +8 lines, -2 lines 0 comments Download
M net/quic/quic_sent_packet_manager.cc View 2 chunks +3 lines, -1 line 0 comments Download
M net/quic/quic_sent_packet_manager_test.cc View 2 chunks +12 lines, -5 lines 0 comments Download
M net/quic/quic_session.h View 1 chunk +1 line, -1 line 0 comments Download
M net/quic/quic_session.cc View 1 2 3 8 chunks +22 lines, -9 lines 0 comments Download
M net/quic/quic_session_test.cc View 10 chunks +18 lines, -15 lines 0 comments Download
M net/quic/quic_spdy_stream.cc View 1 chunk +4 lines, -2 lines 0 comments Download
M net/quic/quic_spdy_stream_test.cc View 5 chunks +10 lines, -10 lines 0 comments Download
M net/quic/quic_unacked_packet_map_test.cc View 2 chunks +9 lines, -7 lines 0 comments Download
M net/quic/reliable_quic_stream.cc View 1 chunk +3 lines, -2 lines 0 comments Download
M net/quic/reliable_quic_stream_test.cc View 3 chunks +5 lines, -5 lines 0 comments Download
M net/quic/test_tools/quic_test_utils.h View 1 1 chunk +18 lines, -0 lines 0 comments Download
M net/quic/test_tools/quic_test_utils.cc View 1 chunk +5 lines, -0 lines 0 comments Download
M net/tools/quic/quic_client.cc View 2 chunks +4 lines, -2 lines 0 comments Download
M net/tools/quic/quic_client_bin.cc View 3 chunks +36 lines, -2 lines 0 comments Download
M net/tools/quic/quic_dispatcher.cc View 1 chunk +2 lines, -1 line 0 comments Download
M net/tools/quic/quic_dispatcher_test.cc View 3 chunks +6 lines, -4 lines 0 comments Download
M net/tools/quic/quic_in_memory_cache.cc View 1 chunk +1 line, -0 lines 0 comments Download
M net/tools/quic/quic_packet_reader.h View 1 chunk +3 lines, -1 line 0 comments Download
M net/tools/quic/quic_packet_reader.cc View 3 chunks +4 lines, -6 lines 0 comments Download
M net/tools/quic/quic_server_session.h View 1 chunk +0 lines, -14 lines 0 comments Download
M net/tools/quic/quic_server_session.cc View 1 chunk +2 lines, -1 line 0 comments Download
M net/tools/quic/quic_server_session_test.cc View 3 chunks +7 lines, -5 lines 0 comments Download
M net/tools/quic/quic_simple_client_bin.cc View 3 chunks +36 lines, -2 lines 0 comments Download
M net/tools/quic/quic_simple_server_stream.h View 1 chunk +5 lines, -0 lines 0 comments Download
M net/tools/quic/quic_simple_server_stream.cc View 2 chunks +17 lines, -1 line 0 comments Download
M net/tools/quic/quic_simple_server_stream_test.cc View 10 chunks +64 lines, -11 lines 0 comments Download
M net/tools/quic/test_tools/quic_test_client.cc View 1 chunk +4 lines, -0 lines 0 comments Download

Messages

Total messages: 46 (27 generated)
Fan Yang
5 years ago (2015-12-22 23:21:47 UTC) #1
Ryan Hamilton
lgtm
5 years ago (2015-12-23 00:19:36 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1541263002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1541263002/20001
5 years ago (2015-12-23 00:20:08 UTC) #8
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_gn_rel on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_gn_rel/builds/46587)
5 years ago (2015-12-23 00:27:02 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1541263002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1541263002/60001
5 years ago (2015-12-23 00:57:57 UTC) #13
commit-bot: I haz the power
Try jobs failed on following builders: cast_shell_android on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/cast_shell_android/builds/2179)
5 years ago (2015-12-23 01:06:34 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1541263002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1541263002/80001
5 years ago (2015-12-23 01:25:00 UTC) #18
commit-bot: I haz the power
Try jobs failed on following builders: mac_chromium_gn_rel on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_gn_rel/builds/46607)
5 years ago (2015-12-23 01:33:28 UTC) #20
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1541263002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1541263002/100001
5 years ago (2015-12-23 01:59:01 UTC) #23
commit-bot: I haz the power
Try jobs failed on following builders: cast_shell_linux on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/cast_shell_linux/builds/96216) ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, ...
5 years ago (2015-12-23 02:08:18 UTC) #25
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1541263002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1541263002/120001
5 years ago (2015-12-23 02:25:28 UTC) #28
commit-bot: I haz the power
Try jobs failed on following builders: ios_dbg_simulator_ninja on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/ios_dbg_simulator_ninja/builds/110996)
5 years ago (2015-12-23 02:47:30 UTC) #30
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1541263002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1541263002/140001
5 years ago (2015-12-23 19:09:13 UTC) #33
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_ozone_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_ozone_rel_ng/builds/105299)
5 years ago (2015-12-23 19:35:31 UTC) #35
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1541263002/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1541263002/200001
4 years, 12 months ago (2015-12-28 16:03:24 UTC) #37
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 12 months ago (2015-12-28 17:21:49 UTC) #39
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1541263002/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1541263002/200001
4 years, 12 months ago (2015-12-28 17:22:10 UTC) #42
commit-bot: I haz the power
Committed patchset #10 (id:200001)
4 years, 12 months ago (2015-12-28 17:27:23 UTC) #44
commit-bot: I haz the power
4 years, 12 months ago (2015-12-28 17:28:41 UTC) #46
Message was sent while issue was closed.
Patchset 10 (id:??) landed as
https://crrev.com/a31a74b13ef5d8c7252138f147a5716c9682cab7
Cr-Commit-Position: refs/heads/master@{#366986}

Powered by Google App Engine
This is Rietveld 408576698