| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_TEST_TOOLS_QUIC_PACKET_CREATOR_PEER_H_ | 5 #ifndef NET_QUIC_TEST_TOOLS_QUIC_PACKET_CREATOR_PEER_H_ |
| 6 #define NET_QUIC_TEST_TOOLS_QUIC_PACKET_CREATOR_PEER_H_ | 6 #define NET_QUIC_TEST_TOOLS_QUIC_PACKET_CREATOR_PEER_H_ |
| 7 | 7 |
| 8 #include "net/quic/quic_protocol.h" | 8 #include "net/quic/quic_protocol.h" |
| 9 | 9 |
| 10 namespace net { | 10 namespace net { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 static void SetNextPacketNumberLength( | 26 static void SetNextPacketNumberLength( |
| 27 QuicPacketCreator* creator, | 27 QuicPacketCreator* creator, |
| 28 QuicPacketNumberLength next_packet_number_length); | 28 QuicPacketNumberLength next_packet_number_length); |
| 29 static QuicPacketNumberLength NextPacketNumberLength( | 29 static QuicPacketNumberLength NextPacketNumberLength( |
| 30 QuicPacketCreator* creator); | 30 QuicPacketCreator* creator); |
| 31 static void SetPacketNumber(QuicPacketCreator* creator, QuicPacketNumber s); | 31 static void SetPacketNumber(QuicPacketCreator* creator, QuicPacketNumber s); |
| 32 static void FillPacketHeader(QuicPacketCreator* creator, | 32 static void FillPacketHeader(QuicPacketCreator* creator, |
| 33 QuicFecGroupNumber fec_group, | 33 QuicFecGroupNumber fec_group, |
| 34 bool fec_flag, | 34 bool fec_flag, |
| 35 QuicPacketHeader* header); | 35 QuicPacketHeader* header); |
| 36 static size_t CreateStreamFrame(QuicPacketCreator* creator, |
| 37 QuicStreamId id, |
| 38 QuicIOVector iov, |
| 39 size_t iov_offset, |
| 40 QuicStreamOffset offset, |
| 41 bool fin, |
| 42 QuicFrame* frame, |
| 43 UniqueStreamBuffer* buffer); |
| 36 | 44 |
| 37 private: | 45 private: |
| 38 DISALLOW_COPY_AND_ASSIGN(QuicPacketCreatorPeer); | 46 DISALLOW_COPY_AND_ASSIGN(QuicPacketCreatorPeer); |
| 39 }; | 47 }; |
| 40 | 48 |
| 41 } // namespace test | 49 } // namespace test |
| 42 | 50 |
| 43 } // namespace net | 51 } // namespace net |
| 44 | 52 |
| 45 #endif // NET_QUIC_TEST_TOOLS_QUIC_PACKET_CREATOR_PEER_H_ | 53 #endif // NET_QUIC_TEST_TOOLS_QUIC_PACKET_CREATOR_PEER_H_ |
| OLD | NEW |