crypto/tls: sort of matching stdlib

This commit is contained in:
Patricio Whittingslow
2026-08-26 11:04:02 -03:00
parent ed86ad0d0e
commit 3e60888c19
2 changed files with 204 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
package tls
type HelloClientMsg struct {
}
func (d *HelloClientMsg) Decode(buf []byte) (int, error) {
return 0, nil
}