relay-man 0.2.5

Peer to peer library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use bytes_kman::prelude::*;

use crate::common::adress::Adress;

#[derive(Bytes, Clone, Debug)]
pub struct Info {
    pub has: bool,
    pub name: String,
    pub client: String,
    pub other: Vec<u8>,
    pub adress: Adress,
}