ECHRejectionError is the error type returned when ECH is rejected by a remote server. If the server offered a ECHConfigList to use for retries, the RetryConfigList field will contain this list. The client may treat an ECHRejectionError with an empty set of RetryConfigs as a secure signal from the s
| 505 | // The client may treat an ECHRejectionError with an empty set of RetryConfigs |
| 506 | // as a secure signal from the server. |
| 507 | type ECHRejectionError struct { |
| 508 | RetryConfigList []byte |
| 509 | } |
| 510 | |
| 511 | func (e *ECHRejectionError) Error() string { |
| 512 | return "tls: server rejected ECH" |
nothing calls this directly
no outgoing calls
no test coverage detected