blob: 385a1dea95b5d6af6c4ec849f8286d4c55d54165 (
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
|
// Copyright 2014 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.
#include "net/quic/quic_session_key.h"
using std::string;
namespace net {
QuicSessionKey::QuicSessionKey() {}
QuicSessionKey::QuicSessionKey(const HostPortPair& host_port_pair,
bool is_https)
: host_port_pair_(host_port_pair),
is_https_(is_https) {}
QuicSessionKey::QuicSessionKey(const string& host,
uint16 port,
bool is_https)
: host_port_pair_(host, port),
is_https_(is_https) {}
QuicSessionKey::~QuicSessionKey() {}
bool QuicSessionKey::operator<(const QuicSessionKey& other) const {
if (!host_port_pair_.Equals(other.host_port_pair_)) {
return host_port_pair_ < other.host_port_pair_;
}
return is_https_ < other.is_https_;
}
bool QuicSessionKey::operator==(const QuicSessionKey& other) const {
return is_https_ == other.is_https_ &&
host_port_pair_.Equals(other.host_port_pair_);
}
string QuicSessionKey::ToString() const {
return (is_https_ ? "https://" : "http://") + host_port_pair_.ToString();
}
} // namespace net
|