crypto/tls.Config.VerifyConnection (field)

17 uses

	crypto/tls (current package)
		common.go#L677: 	VerifyConnection func(ConnectionState) error
		common.go#L1012: 		VerifyConnection:                    c.VerifyConnection,
		handshake_client.go#L580: 		if c.config.VerifyConnection != nil {
		handshake_client.go#L581: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client.go#L1188: 	if c.config.VerifyConnection != nil && !echRejected {
		handshake_client.go#L1189: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client_tls13.go#L598: 		if c.config.VerifyConnection != nil {
		handshake_client_tls13.go#L599: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L583: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L584: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L717: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L718: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L1033: 		if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L1034: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L1060: 	if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L1061: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {