OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_ | 5 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_ |
6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ | 6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 // Set of QUIC tags to send in the handshake's connection options. | 177 // Set of QUIC tags to send in the handshake's connection options. |
178 QuicTagVector quic_connection_options; | 178 QuicTagVector quic_connection_options; |
179 // If true, all QUIC sessions are closed when any local IP address changes. | 179 // If true, all QUIC sessions are closed when any local IP address changes. |
180 bool quic_close_sessions_on_ip_change; | 180 bool quic_close_sessions_on_ip_change; |
181 // Specifes QUIC idle connection state lifetime. | 181 // Specifes QUIC idle connection state lifetime. |
182 int quic_idle_connection_timeout_seconds; | 182 int quic_idle_connection_timeout_seconds; |
183 // If true, disable preconnections if QUIC can do 0RTT. | 183 // If true, disable preconnections if QUIC can do 0RTT. |
184 bool quic_disable_preconnect_if_0rtt; | 184 bool quic_disable_preconnect_if_0rtt; |
185 // List of hosts for which QUIC is explicitly whitelisted. | 185 // List of hosts for which QUIC is explicitly whitelisted. |
186 std::unordered_set<std::string> quic_host_whitelist; | 186 std::unordered_set<std::string> quic_host_whitelist; |
187 | 187 // If true, active QUIC sessions may be migrated onto new IPs when network |
| 188 // changes. |
| 189 bool quic_migrate_sessions_on_network_change; |
188 ProxyDelegate* proxy_delegate; | 190 ProxyDelegate* proxy_delegate; |
189 }; | 191 }; |
190 | 192 |
191 enum SocketPoolType { | 193 enum SocketPoolType { |
192 NORMAL_SOCKET_POOL, | 194 NORMAL_SOCKET_POOL, |
193 WEBSOCKET_SOCKET_POOL, | 195 WEBSOCKET_SOCKET_POOL, |
194 NUM_SOCKET_POOL_TYPES | 196 NUM_SOCKET_POOL_TYPES |
195 }; | 197 }; |
196 | 198 |
197 explicit HttpNetworkSession(const Params& params); | 199 explicit HttpNetworkSession(const Params& params); |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 | 299 |
298 NextProtoVector next_protos_; | 300 NextProtoVector next_protos_; |
299 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; | 301 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; |
300 | 302 |
301 Params params_; | 303 Params params_; |
302 }; | 304 }; |
303 | 305 |
304 } // namespace net | 306 } // namespace net |
305 | 307 |
306 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 308 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
OLD | NEW |