crypto/tls.Config.VerifyConnection (field)

17 uses

	crypto/tls (current package)
		common.go#L637: 	VerifyConnection func(ConnectionState) error
		common.go#L889: 		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#L1153: 	if c.config.VerifyConnection != nil && !echRejected {
		handshake_client.go#L1154: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_client_tls13.go#L628: 		if c.config.VerifyConnection != nil {
		handshake_client_tls13.go#L629: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L539: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L540: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server.go#L668: 	if c.config.VerifyConnection != nil {
		handshake_server.go#L669: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L930: 		if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L931: 			if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {
		handshake_server_tls13.go#L957: 	if c.config.VerifyConnection != nil {
		handshake_server_tls13.go#L958: 		if err := c.config.VerifyConnection(c.connectionStateLocked()); err != nil {