About
Contact
QtCreator
KDevelop
Solarized
1
use
libc
::*;
2
3
cfg_if
! {
4
if
#[cfg(ossl300)] {
5
pub
const
DTLS1_COOKIE_LENGTH:
c_uint
=
255
;
6
}
else
{
7
pub
const
DTLS1_COOKIE_LENGTH:
c_uint
=
256
;
8
}
9
}
10