X-Git-Url: http://git.euphorik.ch/?p=crypto_lab1.git;a=blobdiff_plain;f=lab1_rust%2Fsrc%2Fend_point.rs;fp=lab1_rust%2Fsrc%2Fend_point.rs;h=128a017a167fb44536ad51a62347384c5a6feb9a;hp=51b55b8d284a0bde9d00545d63b1a5bb68327e26;hb=fe03a7f9df6b8f4cf03e2399aeb68a7dc2605a67;hpb=4e2d63f98c464119e7b475a8f981b99d991c3727 diff --git a/lab1_rust/src/end_point.rs b/lab1_rust/src/end_point.rs index 51b55b8..128a017 100644 --- a/lab1_rust/src/end_point.rs +++ b/lab1_rust/src/end_point.rs @@ -118,7 +118,7 @@ impl Client { } } - /// Send some valid and not-valid packets to the server and check the result. + /// Sends some valid and not-valid packets to the server and check the result. /// For each test a new client is created. pub fn start_tests(address: &str, port: u16, variant: packet::Variant) { let execute = |f: &mut |&mut Client| -> bool| -> bool { @@ -269,7 +269,7 @@ impl EndPoint { println!("[{}] time: {}. {}", prefix, self.current_timestamp, s); } - /// Send a packet and wait for an answer synchronously. + /// Sends a packet and wait for an answer synchronously. fn send_with_result(&mut self, p: PacketType) -> IoResult { match self.send(p) { Err(e) => Err(e), @@ -277,8 +277,8 @@ impl EndPoint { } } - /// Send arbitrary data and wait for an answer synchronously. - /// Do not increment the current timestamp. + /// Sends arbitrary data and wait for an answer synchronously. + /// Doesn't increment the current timestamp. pub fn send_raw_with_result(&mut self, p: &[u8]) -> IoResult { self.socket.set_timeout(DEFAULT_TIMEOUT); match self.socket.write(p) {