|
|
Created:
5 years, 9 months ago by guoweis_left_chromium Modified:
5 years, 9 months ago CC:
chromium-reviews, mkwst+moarreviews-renderer_chromium.org, darin-cc_chromium.org, jam, mlamouri+watch-content_chromium.org Base URL:
https://chromium.googlesource.com/chromium/src.git@master Target Ref:
refs/pending/heads/master Project:
chromium Visibility:
Public. |
DescriptionOnly allow temporary IPv6 address.
BUG=413437
Committed: https://crrev.com/30816d9aa5e2a8143d16dfb3f8110ff458c7354f
Cr-Commit-Position: refs/heads/master@{#319596}
Patch Set 1 #Patch Set 2 : #
Total comments: 1
Patch Set 3 : #Patch Set 4 : #
Total comments: 2
Patch Set 5 : #Messages
Total messages: 17 (7 generated)
guoweis@chromium.org changed reviewers: + juberti@chromium.org
PTAL.
Did another test - somehow a temp/deprecated address shows up. This is not what I expected. I'll dig it further. On Fri, Mar 6, 2015 at 3:57 PM, <guoweis@chromium.org> wrote: > Reviewers: juberti2, > > Message: > PTAL. > > Description: > Only allow temporary IPv6 address. > > BUG=413437 > > Please review this at https://codereview.chromium.org/990503002/ > > Base URL: https://chromium.googlesource.com/chromium/src.git@master > > Affected files (+5, -0 lines): > M content/renderer/p2p/ipc_network_manager.cc > > > Index: content/renderer/p2p/ipc_network_manager.cc > diff --git a/content/renderer/p2p/ipc_network_manager.cc > b/content/renderer/p2p/ipc_network_manager.cc > index ac7661209b516e1106ea249b8c002ffeb83ddfbf.. > cbad0692835060b65da861eb2eedf7324d7fb379 100644 > --- a/content/renderer/p2p/ipc_network_manager.cc > +++ b/content/renderer/p2p/ipc_network_manager.cc > @@ -88,6 +88,11 @@ void IpcNetworkManager::OnNetworkListChanged( > network->AddIP(rtc::IPAddress(address)); > networks.push_back(network); > } else if (it->address.size() == net::kIPv6AddressSize) { > + > + // Only allow temporary address. crbug.com/413437 > + if (!(it->ip_address_attributes & net::IP_ADDRESS_ATTRIBUTE_ > TEMPORARY)) > + continue; > + > in6_addr address; > memcpy(&address, &it->address[0], sizeof(in6_addr)); > rtc::IPAddress ip6_addr(address); > > > To unsubscribe from this group and stop receiving emails from it, send an email to chromium-reviews+unsubscribe@chromium.org.
lgtm https://codereview.chromium.org/990503002/diff/20001/content/renderer/p2p/ipc... File content/renderer/p2p/ipc_network_manager.cc (right): https://codereview.chromium.org/990503002/diff/20001/content/renderer/p2p/ipc... content/renderer/p2p/ipc_network_manager.cc:92: // Only allow temporary address. crbug.com/413437 suggest mentioning "to ensure the MAC is not included in the address"
The CQ bit was checked by guoweis@chromium.org
The patchset sent to the CQ was uploaded after l-g-t-m from juberti@chromium.org Link to the patchset: https://codereview.chromium.org/990503002/#ps60001 (title: " ")
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/990503002/60001
The CQ bit was unchecked by commit-bot@chromium.org
No LGTM from a valid reviewer yet. Only full committers are accepted. Even if an LGTM may have been provided, it was from a non-committer, _not_ a full super star committer. See http://www.chromium.org/getting-involved/become-a-committer Note that this has nothing to do with OWNERS files.
guoweis@chromium.org changed reviewers: + sergeyu@chromium.org - juberti@chromium.org
sergeyu, could you lgtm this?
lgtm https://codereview.chromium.org/990503002/diff/60001/content/renderer/p2p/ipc... File content/renderer/p2p/ipc_network_manager.cc (right): https://codereview.chromium.org/990503002/diff/60001/content/renderer/p2p/ipc... content/renderer/p2p/ipc_network_manager.cc:93: // included in the address. crbug.com/413437 I can't access this bug. Please remove this link. It's not useful to refer to non-public bugs in code. https://codereview.chromium.org/990503002/diff/60001/content/renderer/p2p/ipc... content/renderer/p2p/ipc_network_manager.cc:96: continue; add {} please
The CQ bit was checked by guoweis@chromium.org
The patchset sent to the CQ was uploaded after l-g-t-m from sergeyu@chromium.org, juberti@chromium.org Link to the patchset: https://codereview.chromium.org/990503002/#ps80001 (title: " ")
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/990503002/80001
Message was sent while issue was closed.
Committed patchset #5 (id:80001)
Message was sent while issue was closed.
Patchset 5 (id:??) landed as https://crrev.com/30816d9aa5e2a8143d16dfb3f8110ff458c7354f Cr-Commit-Position: refs/heads/master@{#319596} |