Port checked from config

This commit is contained in:
int 80h
2020-05-08 16:12:09 -04:00
parent a066e54acc
commit 24a47ccd70
2 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ use std::path::Path;
#[derive(Debug, Deserialize, Clone)]
pub struct Config {
pub port: i32,
pub port: u16,
pub host: String,
pub server: Vec<Server>,
}
@@ -30,7 +30,7 @@ pub struct ServerCfg {
pub cert: String,
pub cgi: String,
pub usrdir: bool,
pub port: i32,
pub port: u16,
}
impl Config {