Home
last modified time | relevance | path

Searched refs:ERROR_CODE_MODULO (Results 1 – 1 of 1) sorted by relevance

/webrtc/stun/src/
H A Derror_code.rs34 const ERROR_CODE_MODULO: u16 = 100; constant
47 let number = (self.code.0 % ERROR_CODE_MODULO) as u8; // error code modulo 100 in add_to()
48 let class = (self.code.0 / ERROR_CODE_MODULO) as u8; // hundred digit in add_to()
71 let code = class * ERROR_CODE_MODULO + number; in get_from()