Install a server callback invoked after each ClientHello is parsed.
Declared in <openssl/ssl.h>
void
SSL_CTX_set_client_hello_cb(
SSL_CTX* c,
SSL_client_hello_cb_fn cb,
void* arg);
| Name | Description |
|---|---|
| c | Server SSL context that receives ClientHellos. |
| cb | Callback of type SSL_client_hello_cb_fn, or NULL to clear. |
| arg | Application pointer forwarded to cb. |