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

Issue 2140693002: Support port range for IPC P2P UDP sockets. (Closed)

Created:
4 years, 5 months ago by Guido Urdaneta
Modified:
4 years, 5 months ago
CC:
chromium-reviews, darin-cc_chromium.org, jam, mlamouri+watch-content_chromium.org, tommi (sloooow) - chröme
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Support port range for IPC P2P UDP sockets. BUG=342476 Committed: https://crrev.com/b1c12ea6403aa8ec65ebaf62273d50871198d1e0 Cr-Commit-Position: refs/heads/master@{#405742}

Patch Set 1 #

Total comments: 1

Patch Set 2 : Fix compile issues #

Total comments: 11

Patch Set 3 : address tommi's comments #

Total comments: 2

Patch Set 4 : address mkwst's comments #

Patch Set 5 : Rebase and remove unused constructor from test #

Unified diffs Side-by-side diffs Delta from patch set Stats (+282 lines, -46 lines) Patch
M content/browser/bad_message.h View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_dispatcher_host.h View 1 chunk +1 line, -0 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_dispatcher_host.cc View 1 2 3 4 3 chunks +12 lines, -2 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host.h View 1 2 3 4 1 chunk +11 lines, -1 line 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp.h View 1 chunk +2 lines, -0 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp.cc View 1 2 3 4 1 chunk +2 lines, -0 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp_server.h View 1 chunk +2 lines, -0 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp_server.cc View 1 chunk +3 lines, -0 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_tcp_server_unittest.cc View 1 chunk +1 line, -2 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_udp.h View 5 chunks +13 lines, -0 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_udp.cc View 1 2 3 4 4 chunks +53 lines, -14 lines 0 comments Download
M content/browser/renderer_host/p2p/socket_host_udp_unittest.cc View 1 2 3 4 7 chunks +132 lines, -9 lines 0 comments Download
M content/common/p2p_messages.h View 2 chunks +7 lines, -1 line 0 comments Download
M content/common/p2p_socket_type.h View 1 1 chunk +12 lines, -0 lines 0 comments Download
M content/renderer/p2p/ipc_socket_factory.cc View 1 2 3 4 6 chunks +12 lines, -10 lines 0 comments Download
M content/renderer/p2p/socket_client.h View 1 chunk +2 lines, -0 lines 0 comments Download
M content/renderer/p2p/socket_client_impl.h View 2 chunks +4 lines, -0 lines 0 comments Download
M content/renderer/p2p/socket_client_impl.cc View 1 2 2 chunks +11 lines, -7 lines 0 comments Download
M tools/metrics/histograms/histograms.xml View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 30 (11 generated)
Guido Urdaneta
Hi, PTAL https://codereview.chromium.org/2140693002/diff/1/content/browser/renderer_host/p2p/socket_host_tcp_server.cc File content/browser/renderer_host/p2p/socket_host_tcp_server.cc (right): https://codereview.chromium.org/2140693002/diff/1/content/browser/renderer_host/p2p/socket_host_tcp_server.cc#newcode42 content/browser/renderer_host/p2p/socket_host_tcp_server.cc:42: // TODO(guidou): Add support for port range. ...
4 years, 5 months ago (2016-07-11 17:14:55 UTC) #2
tommi (sloooow) - chröme
https://codereview.chromium.org/2140693002/diff/20001/content/browser/renderer_host/p2p/socket_host_tcp_server.cc File content/browser/renderer_host/p2p/socket_host_tcp_server.cc (right): https://codereview.chromium.org/2140693002/diff/20001/content/browser/renderer_host/p2p/socket_host_tcp_server.cc#newcode42 content/browser/renderer_host/p2p/socket_host_tcp_server.cc:42: // TODO(guidou): Add support for port range. I guess ...
4 years, 5 months ago (2016-07-11 17:54:59 UTC) #4
Guido Urdaneta
Hi, PTAL. The main issue was that I was not treating the port range as ...
4 years, 5 months ago (2016-07-12 10:15:00 UTC) #5
tommi (sloooow) - chröme
lgtm https://codereview.chromium.org/2140693002/diff/20001/content/browser/renderer_host/p2p/socket_host_tcp_server.cc File content/browser/renderer_host/p2p/socket_host_tcp_server.cc (right): https://codereview.chromium.org/2140693002/diff/20001/content/browser/renderer_host/p2p/socket_host_tcp_server.cc#newcode42 content/browser/renderer_host/p2p/socket_host_tcp_server.cc:42: // TODO(guidou): Add support for port range. On ...
4 years, 5 months ago (2016-07-12 10:21:47 UTC) #6
Guido Urdaneta
jochen@chromium.org: Please review changes in content/common
4 years, 5 months ago (2016-07-12 12:06:27 UTC) #8
Guido Urdaneta
palmer@chromium.org: Please review changes in content/common/p2p_messages.h
4 years, 5 months ago (2016-07-12 15:53:07 UTC) #10
jochen (gone - plz use gerrit)
lgtm
4 years, 5 months ago (2016-07-12 16:01:41 UTC) #11
Guido Urdaneta
mkwst@: can you take a look at p2p_messages.h?
4 years, 5 months ago (2016-07-14 08:59:08 UTC) #14
Mike West
https://codereview.chromium.org/2140693002/diff/40001/content/browser/renderer_host/p2p/socket_host.h File content/browser/renderer_host/p2p/socket_host.h (right): https://codereview.chromium.org/2140693002/diff/40001/content/browser/renderer_host/p2p/socket_host.h#newcode51 content/browser/renderer_host/p2p/socket_host.h:51: // are valid. Can these restrictions be enforced via ...
4 years, 5 months ago (2016-07-14 09:21:06 UTC) #15
Guido Urdaneta
https://codereview.chromium.org/2140693002/diff/40001/content/browser/renderer_host/p2p/socket_host.h File content/browser/renderer_host/p2p/socket_host.h (right): https://codereview.chromium.org/2140693002/diff/40001/content/browser/renderer_host/p2p/socket_host.h#newcode51 content/browser/renderer_host/p2p/socket_host.h:51: // are valid. On 2016/07/14 09:21:06, Mike West wrote: ...
4 years, 5 months ago (2016-07-14 10:59:09 UTC) #16
Mike West
IPC LGTM, thanks.
4 years, 5 months ago (2016-07-14 11:02:39 UTC) #17
Guido Urdaneta
isherman: please review histograms.xml
4 years, 5 months ago (2016-07-14 11:24:22 UTC) #19
Guido Urdaneta
On 2016/07/14 11:24:22, Guido Urdaneta wrote: > isherman: please review histograms.xml histograms.xml will probably have ...
4 years, 5 months ago (2016-07-14 12:39:42 UTC) #20
Ilya Sherman
histograms.xml gltm
4 years, 5 months ago (2016-07-14 18:54:37 UTC) #21
Ilya Sherman
On 2016/07/14 18:54:37, Ilya Sherman wrote: > histograms.xml gltm lgtm, even
4 years, 5 months ago (2016-07-14 18:54:45 UTC) #22
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2140693002/80001
4 years, 5 months ago (2016-07-15 10:23:39 UTC) #25
Guido Urdaneta
sergeyu@chromium.org: I'm landing this assuming you cannot review it. Please comment later on if you ...
4 years, 5 months ago (2016-07-15 10:39:55 UTC) #26
commit-bot: I haz the power
Committed patchset #5 (id:80001)
4 years, 5 months ago (2016-07-15 11:19:02 UTC) #28
commit-bot: I haz the power
4 years, 5 months ago (2016-07-15 11:20:21 UTC) #30
Message was sent while issue was closed.
Patchset 5 (id:??) landed as
https://crrev.com/b1c12ea6403aa8ec65ebaf62273d50871198d1e0
Cr-Commit-Position: refs/heads/master@{#405742}

Powered by Google App Engine
This is Rietveld 408576698