Home
last modified time | relevance | path

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

/xiu/library/bytesio/src/
H A Dbytes_writer.rs114 pub fn write_random_bytes(&mut self, length: u32) -> Result<(), BytesWriteError> { in write_random_bytes() method
191 pub fn write_random_bytes(&mut self, length: u32) -> Result<(), BytesWriteError> { in write_random_bytes() method
192 self.bytes_writer.write_random_bytes(length) in write_random_bytes()
/xiu/protocol/rtmp/src/handshake/
H A Dhandshake_server.rs173 .write_random_bytes(define::RTMP_HANDSHAKE_SIZE as u32 - 8)?; in write_s1()
224 writer.write_random_bytes(define::RTMP_HANDSHAKE_SIZE as u32 - 8)?; in write_s1()
244 writer.write_random_bytes(define::RTMP_HANDSHAKE_SIZE as u32 - 8)?; in write_s2()
H A Dhandshake_client.rs86 .write_random_bytes((define::RTMP_HANDSHAKE_SIZE - 8) as u32)?; in write_c1()