func crypto/tls.unexpectedMessageError

21 uses

	crypto/tls (current package)
		common.go#L1503: func unexpectedMessageError(wanted, got interface{}) error {
		conn.go#L1168: 		return unexpectedMessageError(helloReq, msg)
		handshake_client.go#L179: 		return unexpectedMessageError(serverHello, msg)
		handshake_client.go#L468: 		return unexpectedMessageError(certMsg, msg)
		handshake_client.go#L558: 		return unexpectedMessageError(shd, msg)
		handshake_client.go#L760: 		return unexpectedMessageError(serverFinished, msg)
		handshake_client.go#L787: 		return unexpectedMessageError(sessionTicketMsg, msg)
		handshake_client_tls13.go#L274: 		return unexpectedMessageError(serverHello, msg)
		handshake_client_tls13.go#L393: 		return unexpectedMessageError(encryptedExtensions, msg)
		handshake_client_tls13.go#L450: 		return unexpectedMessageError(certMsg, msg)
		handshake_client_tls13.go#L473: 		return unexpectedMessageError(certVerify, msg)
		handshake_client_tls13.go#L512: 		return unexpectedMessageError(finished, msg)
		handshake_server.go#L135: 		return nil, unexpectedMessageError(clientHello, msg)
		handshake_server.go#L558: 			return unexpectedMessageError(certMsg, msg)
		handshake_server.go#L587: 		return unexpectedMessageError(ckx, msg)
		handshake_server.go#L616: 			return unexpectedMessageError(certVerify, msg)
		handshake_server.go#L691: 		return unexpectedMessageError(clientFinished, msg)
		handshake_server_tls13.go#L448: 		return unexpectedMessageError(clientHello, msg)
		handshake_server_tls13.go#L791: 		return unexpectedMessageError(certMsg, msg)
		handshake_server_tls13.go#L815: 			return unexpectedMessageError(certVerify, msg)
		handshake_server_tls13.go#L861: 		return unexpectedMessageError(finished, msg)