Skip to content

dev-bio/ekko

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ekko - Echo Request Utility

Echo Request Utility

dependency status Documentation License


Ekko aims to be a light utility for sending echo requests; currently in its early stages.

Usage

To use ekko, add this to your Cargo.toml:

[dependencies]
ekko = "0.7.3"

Example

The following example will trace the route to the specified destination.

use ekko::{ 

    EkkoResponse,
    EkkoError,
    Ekko,
};

fn main() -> Result<(), EkkoError> {
    let sender = Ekko::with_target([8, 8, 8, 8])?;

    for hops in 0..32 {
        let responses = sender.send_range(0..hops)?;
        for ekko in responses.iter() {
            match ekko {

                EkkoResponse::Destination(_) => {
                    for ekko in responses.iter() {
                        println!("{ekko:?}")
                    }
    
                    return Ok(()) 
                }

                _ => continue
            }
        }
    }

    Ok(())
}

Contributing

All contributions are welcome, don't hesitate to open an issue if something is missing!

License

MIT

About

Ekko is a utility for sending echo requests.

Topics

Resources

License

Stars

Watchers

Forks

Languages