mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
32 lines
612 B
Go
32 lines
612 B
Go
package ackhandler
|
|
|
|
import "fmt"
|
|
|
|
// The SendMode says what kind of packets can be sent.
|
|
type SendMode uint8
|
|
|
|
const (
|
|
// SendNone means that no packets should be sent
|
|
SendNone SendMode = iota
|
|
// SendAck means an ACK-only packet should be sent
|
|
SendAck
|
|
// SendPTO means that a probe packet should be sent
|
|
SendPTO
|
|
// SendAny means that any packet should be sent
|
|
SendAny
|
|
)
|
|
|
|
func (s SendMode) String() string {
|
|
switch s {
|
|
case SendNone:
|
|
return "none"
|
|
case SendAck:
|
|
return "ack"
|
|
case SendPTO:
|
|
return "pto"
|
|
case SendAny:
|
|
return "any"
|
|
default:
|
|
return fmt.Sprintf("invalid send mode: %d", s)
|
|
}
|
|
}
|