diff options
author | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-10 19:05:41 +0000 |
---|---|---|
committer | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-10 19:05:41 +0000 |
commit | e1bc9c11561c3c0655f0be424023a3d63e2c1281 (patch) | |
tree | 3eb8a8e76ceec29343364bc709e6c4ae5641007d /net/quic/quic_stream_factory.h | |
parent | 1ca31e413ae1b24bef8220a9c6cfd7efe48eebc9 (diff) | |
download | chromium_src-e1bc9c11561c3c0655f0be424023a3d63e2c1281.zip chromium_src-e1bc9c11561c3c0655f0be424023a3d63e2c1281.tar.gz chromium_src-e1bc9c11561c3c0655f0be424023a3d63e2c1281.tar.bz2 |
Revert 239426 "Create and use a seeded random number generator"
It was tickling a top-crasher.
> Create and use a seeded random number generator
> (PortSuggester) to suggest what ephemeral source port
> should be used when opening a UDP client socket in QUIC.
>
> This should increase the likelihood of 0-RTT connections, even if a strike server is not used across a server cluster.
>
> BUG=326545
>
> Review URL: https://codereview.chromium.org/107803002
BUG=327057
TBR=jar@chromium.org
Review URL: https://codereview.chromium.org/102093003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239818 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/quic/quic_stream_factory.h')
-rw-r--r-- | net/quic/quic_stream_factory.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/net/quic/quic_stream_factory.h b/net/quic/quic_stream_factory.h index 805d8e9..95a3d36 100644 --- a/net/quic/quic_stream_factory.h +++ b/net/quic/quic_stream_factory.h @@ -230,14 +230,6 @@ class NET_EXPORT_PRIVATE QuicStreamFactory base::WeakPtrFactory<QuicStreamFactory> weak_factory_; - // Each profile will (probably) have a unique port_entropy_ value. This value - // is used to help seed a pseudo-random number generator (PortSuggester) so - // that we consistently (within this profile) suggest the same ephemeral port - // when we re-connect to any given server/port. The differences between - // profiles (probablistically) prevent two profiles from colliding in their - // ephemeral port requests. - uint64 port_entropy_; - DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); }; |