crypto/tls.Config.VerifyConnection (field)

17 uses

	crypto/tls (current package)
		common.go#L649: 	VerifyConnection func(ConnectionState) error
		common.go#L938: 		VerifyConnection:                    c.VerifyConnection,
		handshake_client.go#L593: 		if c.config.VerifyConnection != nil {
		handshake_client.go#L594: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client.go#L1176: 	if c.config.VerifyConnection != nil && !echRejected {
		handshake_client.go#L1177: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client_tls13.go#L621: 		if c.config.VerifyConnection != nil {
		handshake_client_tls13.go#L622: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L563: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L564: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L692: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L693: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L1041: 		if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L1042: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L1068: 	if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L1069: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {