blob: 9ef5e77f78559af95b2c8213ba0e9fc871afa6b7 [file] [log] [blame]
use libc::*;
cfg_if! {
if #[cfg(ossl300)] {
pub const DTLS1_COOKIE_LENGTH: c_uint = 255;
} else {
pub const DTLS1_COOKIE_LENGTH: c_uint = 256;
}
}