[][src]Function punching_server::make_match

pub async fn make_match<'_>(host: &'_ str) -> Result<()>

Examples

A server to make match

use async_std::task::block_on;
fn main() {
 let host = "0.0.0.0:9292";
    block_on(punching_server::make_match(host)).unwrap();