crypto/tls.Config.VerifyConnection (field)

17 uses

	crypto/tls (current package)
		common.go#L654: 	VerifyConnection func(ConnectionState) error
		common.go#L961: 		VerifyConnection:                    c.VerifyConnection,
		handshake_client.go#L599: 		if c.config.VerifyConnection != nil {
		handshake_client.go#L600: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client.go#L1201: 	if c.config.VerifyConnection != nil && !echRejected {
		handshake_client.go#L1202: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client_tls13.go#L622: 		if c.config.VerifyConnection != nil {
		handshake_client_tls13.go#L623: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L578: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L579: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L712: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L713: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L1053: 		if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L1054: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L1080: 	if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L1081: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {