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

Side by Side Diff: net/quic/crypto/quic_crypto_server_config.cc

Issue 1908103002: Landing Recent QUIC changes until 4/15/2016 17:20 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/quic/crypto/quic_crypto_server_config.h" 5 #include "net/quic/crypto/quic_crypto_server_config.h"
6 6
7 #include <stdlib.h> 7 #include <stdlib.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <memory>
10 11
11 #include "base/macros.h" 12 #include "base/macros.h"
12 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
13 #include "base/stl_util.h" 14 #include "base/stl_util.h"
14 #include "base/strings/string_number_conversions.h" 15 #include "base/strings/string_number_conversions.h"
15 #include "crypto/hkdf.h" 16 #include "crypto/hkdf.h"
16 #include "crypto/secure_hash.h" 17 #include "crypto/secure_hash.h"
17 #include "net/base/ip_address.h" 18 #include "net/base/ip_address.h"
18 #include "net/quic/crypto/aes_128_gcm_12_decrypter.h" 19 #include "net/quic/crypto/aes_128_gcm_12_decrypter.h"
19 #include "net/quic/crypto/aes_128_gcm_12_encrypter.h" 20 #include "net/quic/crypto/aes_128_gcm_12_encrypter.h"
(...skipping 1798 matching lines...) Expand 10 before | Expand all | Expand 10 after
1818 priority(0), 1819 priority(0),
1819 source_address_token_boxer(nullptr) {} 1820 source_address_token_boxer(nullptr) {}
1820 1821
1821 QuicCryptoServerConfig::Config::~Config() { 1822 QuicCryptoServerConfig::Config::~Config() {
1822 STLDeleteElements(&key_exchanges); 1823 STLDeleteElements(&key_exchanges);
1823 } 1824 }
1824 1825
1825 QuicCryptoProof::QuicCryptoProof() {} 1826 QuicCryptoProof::QuicCryptoProof() {}
1826 QuicCryptoProof::~QuicCryptoProof() {} 1827 QuicCryptoProof::~QuicCryptoProof() {}
1827 } // namespace net 1828 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/crypto/quic_crypto_client_config.cc ('k') | net/quic/crypto/quic_crypto_server_config_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698