mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
pass packet number and packet number length to frames.Write
This commit is contained in:
parent
7467e7ebff
commit
f2eafb7179
13 changed files with 45 additions and 39 deletions
|
@ -25,7 +25,7 @@ type AckFrame struct {
|
|||
}
|
||||
|
||||
// Write writes an ACK frame.
|
||||
func (f *AckFrame) Write(b *bytes.Buffer) error {
|
||||
func (f *AckFrame) Write(b *bytes.Buffer, packetNumber protocol.PacketNumber, packetNumberLen uint8) error {
|
||||
typeByte := uint8(0x40 | 0x0C)
|
||||
|
||||
if f.HasNACK() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue