new: vendor godicttls package (#265)

For better maintainability we decided to vendor this package instead of importing it.
This commit is contained in:
Gaukas Wang 2023-12-11 21:02:16 -07:00 committed by GitHub
parent feb5a95fc8
commit 9521fba944
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
34 changed files with 2602 additions and 17 deletions

34
dicttls/contenttype.go Normal file
View 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,
}