variant-ssl-sys 0.17.24

FFI bindings to OpenSSL variants such as BoringSSL / AWS-LC / Tongsuo
Documentation
1
2
3
4
5
6
7
8
9
use libc::*;

cfg_if! {
    if #[cfg(ossl300)] {
        pub const DTLS1_COOKIE_LENGTH: c_uint = 255;
    } else {
        pub const DTLS1_COOKIE_LENGTH: c_uint = 256;
    }
}