| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_TOOLS_QUIC_QUIC_PER_CONNECTION_PACKET_WRITER_H_ | 5 #ifndef NET_TOOLS_QUIC_QUIC_PER_CONNECTION_PACKET_WRITER_H_ |
| 6 #define NET_TOOLS_QUIC_QUIC_PER_CONNECTION_PACKET_WRITER_H_ | 6 #define NET_TOOLS_QUIC_QUIC_PER_CONNECTION_PACKET_WRITER_H_ |
| 7 | 7 |
| 8 #include "net/quic/quic_connection.h" | 8 #include "net/quic/quic_connection.h" |
| 9 #include "net/quic/quic_packet_writer.h" | 9 #include "net/quic/quic_packet_writer.h" |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 // Default implementation of the QuicPacketWriter interface: Passes everything | 27 // Default implementation of the QuicPacketWriter interface: Passes everything |
| 28 // to |shared_writer_|. | 28 // to |shared_writer_|. |
| 29 WriteResult WritePacket(const char* buffer, | 29 WriteResult WritePacket(const char* buffer, |
| 30 size_t buf_len, | 30 size_t buf_len, |
| 31 const IPAddressNumber& self_address, | 31 const IPAddressNumber& self_address, |
| 32 const IPEndPoint& peer_address) override; | 32 const IPEndPoint& peer_address) override; |
| 33 bool IsWriteBlockedDataBuffered() const override; | 33 bool IsWriteBlockedDataBuffered() const override; |
| 34 bool IsWriteBlocked() const override; | 34 bool IsWriteBlocked() const override; |
| 35 void SetWritable() override; | 35 void SetWritable() override; |
| 36 QuicByteCount GetMaxPacketSize(const IPEndPoint& peer_address) const override; |
| 36 | 37 |
| 37 private: | 38 private: |
| 38 QuicPacketWriter* shared_writer_; // Not owned. | 39 QuicPacketWriter* shared_writer_; // Not owned. |
| 39 QuicConnection* connection_; // Not owned. | 40 QuicConnection* connection_; // Not owned. |
| 40 | 41 |
| 41 DISALLOW_COPY_AND_ASSIGN(QuicPerConnectionPacketWriter); | 42 DISALLOW_COPY_AND_ASSIGN(QuicPerConnectionPacketWriter); |
| 42 }; | 43 }; |
| 43 | 44 |
| 44 } // namespace tools | 45 } // namespace tools |
| 45 | 46 |
| 46 } // namespace net | 47 } // namespace net |
| 47 | 48 |
| 48 #endif // NET_TOOLS_QUIC_QUIC_PER_CONNECTION_PACKET_WRITER_H_ | 49 #endif // NET_TOOLS_QUIC_QUIC_PER_CONNECTION_PACKET_WRITER_H_ |
| OLD | NEW |