()
| 20 | var ErrBadClientHello = errors.New("non (or malformed) ClientHello") |
| 21 | |
| 22 | func (TLS) String() string { return "TLS" } |
| 23 | |
| 24 | func (TLS) processFirstPacket(clientHello []byte, privateKey crypto.PrivateKey) (fragments authFragments, respond Responder, err error) { |
| 25 | ch, err := parseClientHello(clientHello) |
no outgoing calls