Source File
immediate_ack_frame.go
Belonging Package
github.com/quic-go/quic-go/internal/wire
package wireimport ()// An ImmediateAckFrame is an IMMEDIATE_ACK frametype ImmediateAckFrame struct{}func ( *ImmediateAckFrame) ( []byte, protocol.Version) ([]byte, error) {return quicvarint.Append(, uint64(FrameTypeImmediateAck)), nil}// Length of a written framefunc ( *ImmediateAckFrame) ( protocol.Version) protocol.ByteCount {return protocol.ByteCount(quicvarint.Len(uint64(FrameTypeImmediateAck)))}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |