implemented user and started security

This commit is contained in:
JOLIMAITRE Matthieu 2022-08-23 17:53:12 +02:00
parent c17cdd888a
commit 21e5240f74
13 changed files with 642 additions and 220 deletions

View file

@ -87,7 +87,7 @@ pub fn parse(input: &str) -> Option<Command> {
Some(Command::Request(command))
}
pub const CMDS: &'static [Description] = &[
pub const CMDS: &[Description] = &[
// all commands
Description::new("help", &[], "returns a help message"),
Description::new(

View file

@ -3,13 +3,13 @@ use std::{
process::exit,
};
use harsh_common::ServerRequest;
use harsh_common::ServerEvent;
use tokio::{
io::{stdin, AsyncBufReadExt, AsyncWriteExt, BufReader},
net::TcpStream,
};
const ADDRESS: &'static str = "localhost:42069";
const ADDRESS: &str = "localhost:42000";
#[tokio::main]
async fn main() {
@ -21,13 +21,10 @@ async fn main() {
let mut reader = BufReader::new(reader);
loop {
let mut line = String::new();
match reader.read_line(&mut line).await {
Ok(0) => {
break;
}
_ => (),
if let Ok(0) = reader.read_line(&mut line).await {
break;
}
if let Some(parsed) = ServerRequest::try_parse(&line) {
if let Some(parsed) = ServerEvent::try_parse(&line) {
println!("[main/info] received '{parsed:?}'");
}
}