liarsping 0.1.0

A ping server which attempts to manipulate the ping times seen by the client
Documentation
1
2
3
4
5
6
7
8
use clap::Parser;
use liarsping::config::{Args, Config};
use liarsping::run::run;

fn main() -> std::io::Result<()> {
    let args = Args::parse();
    run(Config::from(args))
}