Source File
heartbeat_mode.go
Belonging Package
github.com/refraction-networking/utls/dicttls
package dicttls// source: https://www.iana.org/assignments/tls-parameters/heartbeat-modes.csv// last updated: March 2023const (HeartbeatMode_peer_allowed_to_send uint8 = 1HeartbeatMode_peer_not_allowed_to_send uint8 = 2)var DictHeartbeatModeValueIndexed = map[uint8]string{1: "peer_allowed_to_send",2: "peer_not_allowed_to_send",}var DictHeartbeatModeNameIndexed = map[string]uint8{"peer_allowed_to_send": 1,"peer_not_allowed_to_send": 2,}
![]() |
The pages are generated with Golds v0.8.4. (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. |