[][src]Function fastly::handle::client_tls_cipher_openssl_name

pub fn client_tls_cipher_openssl_name() -> Option<&'static str>

Get the cipher suite used to secure the downstream client TLS connection.

The value returned will be consistent with the OpenSSL name for the cipher suite.

Examples

assert_eq!(
    fastly::handle::client_tls_cipher_openssl_name().unwrap(),
    "ECDHE-RSA-AES128-GCM-SHA256"
);