| 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_QUIC_QUIC_SERVER_PACKET_WRITER_H_ | 5 #ifndef NET_QUIC_QUIC_SERVER_PACKET_WRITER_H_ |
| 6 #define NET_QUIC_QUIC_SERVER_PACKET_WRITER_H_ | 6 #define NET_QUIC_QUIC_SERVER_PACKET_WRITER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "net/base/ip_endpoint.h" | 10 #include "net/base/ip_endpoint.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 virtual WriteResult WritePacketWithCallback( | 34 virtual WriteResult WritePacketWithCallback( |
| 35 const char* buffer, | 35 const char* buffer, |
| 36 size_t buf_len, | 36 size_t buf_len, |
| 37 const IPAddressNumber& self_address, | 37 const IPAddressNumber& self_address, |
| 38 const IPEndPoint& peer_address, | 38 const IPEndPoint& peer_address, |
| 39 WriteCallback callback); | 39 WriteCallback callback); |
| 40 | 40 |
| 41 void OnWriteComplete(int rv); | 41 void OnWriteComplete(int rv); |
| 42 | 42 |
| 43 // QuicPacketWriter implementation: | 43 // QuicPacketWriter implementation: |
| 44 virtual bool IsWriteBlockedDataBuffered() const OVERRIDE; | 44 virtual bool IsWriteBlockedDataBuffered() const override; |
| 45 virtual bool IsWriteBlocked() const OVERRIDE; | 45 virtual bool IsWriteBlocked() const override; |
| 46 virtual void SetWritable() OVERRIDE; | 46 virtual void SetWritable() override; |
| 47 | 47 |
| 48 protected: | 48 protected: |
| 49 // Do not call WritePacket on its own -- use WritePacketWithCallback | 49 // Do not call WritePacket on its own -- use WritePacketWithCallback |
| 50 virtual WriteResult WritePacket(const char* buffer, | 50 virtual WriteResult WritePacket(const char* buffer, |
| 51 size_t buf_len, | 51 size_t buf_len, |
| 52 const IPAddressNumber& self_address, | 52 const IPAddressNumber& self_address, |
| 53 const IPEndPoint& peer_address) OVERRIDE; | 53 const IPEndPoint& peer_address) override; |
| 54 private: | 54 private: |
| 55 UDPServerSocket* socket_; | 55 UDPServerSocket* socket_; |
| 56 | 56 |
| 57 // To be notified after every successful asynchronous write. | 57 // To be notified after every successful asynchronous write. |
| 58 QuicBlockedWriterInterface* blocked_writer_; | 58 QuicBlockedWriterInterface* blocked_writer_; |
| 59 | 59 |
| 60 // To call once the write completes. | 60 // To call once the write completes. |
| 61 WriteCallback callback_; | 61 WriteCallback callback_; |
| 62 | 62 |
| 63 // Whether a write is currently in flight. | 63 // Whether a write is currently in flight. |
| 64 bool write_blocked_; | 64 bool write_blocked_; |
| 65 | 65 |
| 66 base::WeakPtrFactory<QuicServerPacketWriter> weak_factory_; | 66 base::WeakPtrFactory<QuicServerPacketWriter> weak_factory_; |
| 67 | 67 |
| 68 DISALLOW_COPY_AND_ASSIGN(QuicServerPacketWriter); | 68 DISALLOW_COPY_AND_ASSIGN(QuicServerPacketWriter); |
| 69 }; | 69 }; |
| 70 | 70 |
| 71 } // namespace net | 71 } // namespace net |
| 72 | 72 |
| 73 #endif // NET_QUIC_QUIC_SERVER_PACKET_WRITER_H_ | 73 #endif // NET_QUIC_QUIC_SERVER_PACKET_WRITER_H_ |
| OLD | NEW |