mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
new: vendor godicttls package (#265)
For better maintainability we decided to vendor this package instead of importing it.
This commit is contained in:
parent
feb5a95fc8
commit
9521fba944
34 changed files with 2602 additions and 17 deletions
34
dicttls/contenttype.go
Normal file
34
dicttls/contenttype.go
Normal file
|
@ -0,0 +1,34 @@
|
|||
package dicttls
|
||||
|
||||
// source: https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-5
|
||||
// last updated: March 2023
|
||||
|
||||
const (
|
||||
ContentType_change_cipher_spec uint8 = 20
|
||||
ContentType_alert uint8 = 21
|
||||
ContentType_handshake uint8 = 22
|
||||
ContentType_application_data uint8 = 23
|
||||
ContentType_heartbeat uint8 = 24
|
||||
ContentType_tls12_cid uint8 = 25
|
||||
ContentType_ACK uint8 = 26
|
||||
)
|
||||
|
||||
var DictContentTypeValueIndexed = map[uint8]string{
|
||||
20: "change_cipher_spec",
|
||||
21: "alert",
|
||||
22: "handshake",
|
||||
23: "application_data",
|
||||
24: "heartbeat",
|
||||
25: "tls12_cid",
|
||||
26: "ACK",
|
||||
}
|
||||
|
||||
var DictContentTypeNameIndexed = map[string]uint8{
|
||||
"change_cipher_spec": 20,
|
||||
"alert": 21,
|
||||
"handshake": 22,
|
||||
"application_data": 23,
|
||||
"heartbeat": 24,
|
||||
"tls12_cid": 25,
|
||||
"ACK": 26,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue