crypto/tls.clientHandshakeState.serverHello (field)

19 uses

	crypto/tls (current package)
		handshake_client.go#L27: 	serverHello  *serverHelloMsg
		handshake_client.go#L215: 		serverHello: serverHello,
		handshake_client.go#L390: 	hs.finishedHash.Write(hs.serverHello.marshal())
		handshake_client.go#L442: 	c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random)
		handshake_client.go#L449: 	if hs.suite = mutualCipherSuite(hs.hello.cipherSuites, hs.serverHello.cipherSuite); hs.suite == nil {
		handshake_client.go#L482: 		if !hs.serverHello.ocspStapling {
		handshake_client.go#L524: 		err = keyAgreement.processServerKeyExchange(c.config, hs.hello, hs.serverHello, c.peerCertificates[0], skx)
		handshake_client.go#L634: 	hs.masterSecret = masterFromPreMasterSecret(c.vers, hs.suite, preMasterSecret, hs.hello.random, hs.serverHello.random)
		handshake_client.go#L649: 		keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
		handshake_client.go#L671: 		bytes.Equal(hs.serverHello.sessionId, hs.hello.sessionId)
		handshake_client.go#L681: 	if hs.serverHello.compressionMethod != compressionNone {
		handshake_client.go#L686: 	if c.handshakes == 0 && hs.serverHello.secureRenegotiationSupported {
		handshake_client.go#L688: 		if len(hs.serverHello.secureRenegotiation) != 0 {
		handshake_client.go#L698: 		if !bytes.Equal(hs.serverHello.secureRenegotiation, expectedSecureRenegotiation[:]) {
		handshake_client.go#L704: 	if hs.serverHello.alpnProtocol != "" {
		handshake_client.go#L709: 		if mutualProtocol([]string{hs.serverHello.alpnProtocol}, hs.hello.alpnProtocols) == "" {
		handshake_client.go#L713: 		c.clientProtocol = hs.serverHello.alpnProtocol
		handshake_client.go#L716: 	c.scts = hs.serverHello.scts
		handshake_client.go#L775: 	if !hs.serverHello.ticketSupported {