blob: 458ddfa30712e098a931bfea6ba437d63e04f82d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_QUIC_PORT_SUGGESTER_H_
#define NET_QUIC_PORT_SUGGESTER_H_
#include <stdint.h>
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/sha1.h"
#include "net/base/net_export.h"
namespace net {
class HostPortPair;
// We provide a pseudo-random number generator that is always seeded the same
// way for a given destination host-port pair. The generator is used to
// consistently suggest (for that host-port pair) an ephemeral source port,
// and hence increase the likelihood that a server's load balancer will direct
// a repeated connection to the same server (with QUIC, further increasing the
// chance of connection establishment with 0-RTT).
class NET_EXPORT_PRIVATE PortSuggester
: public base::RefCounted<PortSuggester> {
public:
PortSuggester(const HostPortPair& server, uint64_t seed);
// Generate a pseudo-random int in the inclusive range from |min| to |max|.
// Will (probably) return different numbers when called repeatedly.
int SuggestPort(int min, int max);
uint32_t call_count() const { return call_count_; }
int previous_suggestion() const;
private:
friend class base::RefCounted<PortSuggester>;
virtual ~PortSuggester() {}
// We maintain the first 8 bytes of a hash as our seed_ state.
uint64_t seed_;
uint32_t call_count_; // Number of suggestions made.
int previous_suggestion_;
DISALLOW_COPY_AND_ASSIGN(PortSuggester);
};
} // namespace net
#endif // NET_QUIC_PORT_SUGGESTER_H_
|