crypto/tls.Config.VerifyConnection (field)

17 uses

	crypto/tls (current package)
		common.go#L630: 	VerifyConnection func(ConnectionState) error
		common.go#L842: 		VerifyConnection:            c.VerifyConnection,
		handshake_client.go#L480: 		if c.config.VerifyConnection != nil {
		handshake_client.go#L481: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client.go#L1018: 	if c.config.VerifyConnection != nil {
		handshake_client.go#L1019: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client_tls13.go#L494: 		if c.config.VerifyConnection != nil {
		handshake_client_tls13.go#L495: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L524: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L525: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L650: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L651: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L885: 		if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L886: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L912: 	if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L913: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {