Read and writing of packet, work in progress.
[crypto_lab1.git] / src / client.rs
index 8392460..575df05 100644 (file)
@@ -1,10 +1,8 @@
 use std::io::{ TcpStream, IoResult };
 use command::{ Command, Packet, Error };
-use crypto::Crypto;
 
 pub struct Client {
    socket: TcpStream,
-   crypto: Crypto,
    current_timestamp: u64
 }
 
@@ -12,8 +10,7 @@ impl Client {
    pub fn new(address: &str, port: u16) -> IoResult<Client> {
       Ok(Client { 
          socket: try!(TcpStream::connect(address, port)),
-         current_timestamp: 0,
-         crypto: Crypto::new()
+         current_timestamp: 0
       })
    }
    
@@ -24,7 +21,7 @@ impl Client {
    
    pub fn start_tests(&mut self) {
       
-      let command = Packet::newRandomCommand(self.current_timestamp);      
+      let command = Packet::new_random_command(self.current_timestamp);      
       self.send(command);
       
    }