| Index: net/tools/quic/quic_server.h
|
| diff --git a/net/tools/quic/quic_server.h b/net/tools/quic/quic_server.h
|
| index ca2a2b5196944b6f0ec24e546bb312cac14e94a8..49718dbde6a932e341e82f9a531668b026ec4828 100644
|
| --- a/net/tools/quic/quic_server.h
|
| +++ b/net/tools/quic/quic_server.h
|
| @@ -43,7 +43,7 @@ class QuicServer : public EpollCallbackInterface {
|
| ~QuicServer() override;
|
|
|
| // Start listening on the specified address.
|
| - bool Listen(const IPEndPoint& address);
|
| + bool CreateUDPSocketAndListen(const IPEndPoint& address);
|
|
|
| // Wait up to 50ms, and handle any events which occur.
|
| void WaitForEvents();
|
| @@ -130,6 +130,8 @@ class QuicServer : public EpollCallbackInterface {
|
| // skipped as necessary).
|
| QuicVersionVector supported_versions_;
|
|
|
| + // Point to a QuicPacketReader object on the heap. The reader allocates more
|
| + // space than allowed on the stack.
|
| scoped_ptr<QuicPacketReader> packet_reader_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(QuicServer);
|
|
|