geph5-client 0.2.59

Geph5 client
Documentation
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<()> {
    todo!()
}

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