geph5-client 0.2.0-alpha.9

Geph5 client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use anyctx::AnyCtx;
use bytes::Bytes;
use ipstack_geph::IpStack;
use smol::channel::{Receiver, Sender};
use std::net::IpAddr;

use crate::Config;

pub(super) async fn packet_shuffle(
    ctx: AnyCtx<Config>,
    send_captured: Sender<Bytes>,
    recv_injected: Receiver<Bytes>,
) -> anyhow::Result<()> {
}

pub fn vpn_whitelist(_addr: IpAddr) {
    // noop
}