crypto/tls.Config.VerifyConnection (field)

17 uses

	crypto/tls (current package)
		common.go#L592: 	VerifyConnection func(ConnectionState) error
		common.go#L762: 		VerifyConnection:            c.VerifyConnection,
		handshake_client.go#L408: 		if c.config.VerifyConnection != nil {
		handshake_client.go#L409: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client.go#L871: 	if c.config.VerifyConnection != nil {
		handshake_client.go#L872: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client_tls13.go#L421: 		if c.config.VerifyConnection != nil {
		handshake_client_tls13.go#L422: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L445: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L446: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L576: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L577: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L771: 		if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L772: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L799: 	if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L800: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {