nym-ip-packet-client 1.20.4

Nym's implementation of a client that sends and receives IP packets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2023-2024 - Nym Technologies SA <contact@nymtech.net>
// SPDX-License-Identifier: GPL-3.0-only

mod connect;
mod error;
mod helpers;
mod listener;

pub use connect::IprClientConnect;
pub use error::Error;
pub use listener::{IprListener, MixnetMessageOutcome};

// Re-export the currently used version
pub use nym_ip_packet_requests::v8 as current;