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 <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 // Noe: Using this in the case of NPN for HTTP only results in the browser | 110 // Noe: Using this in the case of NPN for HTTP only results in the browser |
111 // trying SSL and then falling back to http. | 111 // trying SSL and then falling back to http. |
112 bool use_alternate_protocols; | 112 bool use_alternate_protocols; |
113 double alternate_protocol_probability_threshold; | 113 double alternate_protocol_probability_threshold; |
114 | 114 |
115 bool enable_quic; | 115 bool enable_quic; |
116 bool enable_quic_for_proxies; | 116 bool enable_quic_for_proxies; |
117 bool enable_quic_port_selection; | 117 bool enable_quic_port_selection; |
118 bool quic_always_require_handshake_confirmation; | 118 bool quic_always_require_handshake_confirmation; |
119 bool quic_disable_connection_pooling; | 119 bool quic_disable_connection_pooling; |
120 int quic_load_server_info_timeout_ms; | |
121 float quic_load_server_info_timeout_srtt_multiplier; | 120 float quic_load_server_info_timeout_srtt_multiplier; |
122 bool quic_enable_truncated_connection_ids; | |
123 bool quic_enable_connection_racing; | 121 bool quic_enable_connection_racing; |
124 bool quic_enable_non_blocking_io; | 122 bool quic_enable_non_blocking_io; |
125 bool quic_disable_disk_cache; | 123 bool quic_disable_disk_cache; |
126 int quic_socket_receive_buffer_size; | 124 int quic_socket_receive_buffer_size; |
127 HostPortPair origin_to_force_quic_on; | 125 HostPortPair origin_to_force_quic_on; |
128 QuicClock* quic_clock; // Will be owned by QuicStreamFactory. | 126 QuicClock* quic_clock; // Will be owned by QuicStreamFactory. |
129 QuicRandom* quic_random; | 127 QuicRandom* quic_random; |
130 size_t quic_max_packet_length; | 128 size_t quic_max_packet_length; |
131 std::string quic_user_agent_id; | 129 std::string quic_user_agent_id; |
132 bool enable_user_alternate_protocol_ports; | 130 bool enable_user_alternate_protocol_ports; |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 | 250 |
253 NextProtoVector next_protos_; | 251 NextProtoVector next_protos_; |
254 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; | 252 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; |
255 | 253 |
256 Params params_; | 254 Params params_; |
257 }; | 255 }; |
258 | 256 |
259 } // namespace net | 257 } // namespace net |
260 | 258 |
261 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 259 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
OLD | NEW |