| Index: net/tools/quic/quic_server.h
|
| diff --git a/net/tools/quic/quic_server.h b/net/tools/quic/quic_server.h
|
| index 56b9e4da8503c7e3a573d7407411af089546f4b7..0ea6fd4535f034f7c9a67c12bcd5dd97ed711a17 100644
|
| --- a/net/tools/quic/quic_server.h
|
| +++ b/net/tools/quic/quic_server.h
|
| @@ -34,8 +34,9 @@ class QuicPacketReader;
|
|
|
| class QuicServer : public EpollCallbackInterface {
|
| public:
|
| - QuicServer();
|
| - QuicServer(const QuicConfig& config,
|
| + explicit QuicServer(ProofSource* proof_source);
|
| + QuicServer(ProofSource* proof_source,
|
| + const QuicConfig& config,
|
| const QuicVersionVector& supported_versions);
|
|
|
| ~QuicServer() override;
|
| @@ -61,12 +62,6 @@ class QuicServer : public EpollCallbackInterface {
|
| crypto_config_.set_strike_register_no_startup_period();
|
| }
|
|
|
| - // SetProofSource sets the ProofSource that will be used to verify the
|
| - // server's certificate, and takes ownership of |source|.
|
| - void SetProofSource(ProofSource* source) {
|
| - crypto_config_.SetProofSource(source);
|
| - }
|
| -
|
| bool overflow_supported() { return overflow_supported_; }
|
|
|
| QuicPacketCount packets_dropped() { return packets_dropped_; }
|
|
|