| 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_QUIC_QUIC_STREAM_FACTORY_H_ | 5 #ifndef NET_QUIC_QUIC_STREAM_FACTORY_H_ |
| 6 #define NET_QUIC_QUIC_STREAM_FACTORY_H_ | 6 #define NET_QUIC_QUIC_STREAM_FACTORY_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 float packet_loss_threshold, | 183 float packet_loss_threshold, |
| 184 int max_recent_disabled_reasons, | 184 int max_recent_disabled_reasons, |
| 185 int threshold_timeouts_with_streams_open, | 185 int threshold_timeouts_with_streams_open, |
| 186 int threshold_public_resets_post_handshake, | 186 int threshold_public_resets_post_handshake, |
| 187 int socket_receive_buffer_size, | 187 int socket_receive_buffer_size, |
| 188 bool delay_tcp_race, | 188 bool delay_tcp_race, |
| 189 int max_server_configs_stored_in_properties, | 189 int max_server_configs_stored_in_properties, |
| 190 bool close_sessions_on_ip_change, | 190 bool close_sessions_on_ip_change, |
| 191 bool disable_quic_on_timeout_with_open_streams, | 191 bool disable_quic_on_timeout_with_open_streams, |
| 192 int idle_connection_timeout_seconds, | 192 int idle_connection_timeout_seconds, |
| 193 int packet_reader_yield_after_duration_milliseconds, |
| 193 bool migrate_sessions_on_network_change, | 194 bool migrate_sessions_on_network_change, |
| 194 bool migrate_sessions_early, | 195 bool migrate_sessions_early, |
| 195 bool allow_server_migration, | 196 bool allow_server_migration, |
| 196 bool force_hol_blocking, | 197 bool force_hol_blocking, |
| 197 bool race_cert_verification, | 198 bool race_cert_verification, |
| 198 const QuicTagVector& connection_options, | 199 const QuicTagVector& connection_options, |
| 199 bool enable_token_binding); | 200 bool enable_token_binding); |
| 200 ~QuicStreamFactory() override; | 201 ~QuicStreamFactory() override; |
| 201 | 202 |
| 202 // Returns true if there is an existing session for |server_id| or if the | 203 // Returns true if there is an existing session for |server_id| or if the |
| (...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 650 const scoped_refptr<SSLConfigService> ssl_config_service_; | 651 const scoped_refptr<SSLConfigService> ssl_config_service_; |
| 651 | 652 |
| 652 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; | 653 base::WeakPtrFactory<QuicStreamFactory> weak_factory_; |
| 653 | 654 |
| 654 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); | 655 DISALLOW_COPY_AND_ASSIGN(QuicStreamFactory); |
| 655 }; | 656 }; |
| 656 | 657 |
| 657 } // namespace net | 658 } // namespace net |
| 658 | 659 |
| 659 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ | 660 #endif // NET_QUIC_QUIC_STREAM_FACTORY_H_ |
| OLD | NEW |