crypto/tls.Config.VerifyConnection (field)

17 uses

	crypto/tls (current package)
		common.go#L611: 	VerifyConnection func(ConnectionState) error
		common.go#L798: 		VerifyConnection:            c.VerifyConnection,
		handshake_client.go#L418: 		if c.config.VerifyConnection != nil {
		handshake_client.go#L419: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client.go#L892: 	if c.config.VerifyConnection != nil {
		handshake_client.go#L893: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client_tls13.go#L417: 		if c.config.VerifyConnection != nil {
		handshake_client_tls13.go#L418: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L471: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L472: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L602: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L603: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L757: 		if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L758: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L785: 	if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L786: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {