Fix clippy errors and create new package
This commit is contained in:
parent
fca597a194
commit
ebbe72fc19
@ -56,4 +56,4 @@
|
||||
# systemd-units = { enable = false }
|
||||
|
||||
[workspace]
|
||||
members = ["libs/easy-tun", "libs/fast-nat"]
|
||||
members = ["libs/easy-tun", "libs/fast-nat", "libs/interproto"]
|
||||
|
@ -0,0 +1,5 @@
|
||||
# Fast Network Address Table
|
||||
|
||||
`fast-nat` is an OSI layer 3 Network Address Table built for speed.
|
||||
|
||||
While this library can be used on its own just fine, it was designed for use in `protomask`.
|
@ -15,11 +15,9 @@ pub struct CrossProtocolNetworkAddressTable {
|
||||
|
||||
impl CrossProtocolNetworkAddressTable {
|
||||
/// Construct a new empty `CrossProtocolNetworkAddressTable`
|
||||
#[must_use]
|
||||
pub fn new() -> Self {
|
||||
Self {
|
||||
addr_map: BiHashMap::new(),
|
||||
timeouts: FxHashMap::default(),
|
||||
}
|
||||
Self::default()
|
||||
}
|
||||
|
||||
/// Prune all old mappings
|
||||
@ -90,3 +88,12 @@ impl CrossProtocolNetworkAddressTable {
|
||||
self.addr_map.get_left(&ipv6.into()).copied()
|
||||
}
|
||||
}
|
||||
|
||||
impl Default for CrossProtocolNetworkAddressTable {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
addr_map: BiHashMap::new(),
|
||||
timeouts: FxHashMap::default(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,8 @@
|
||||
#![doc = include_str!("../README.md")]
|
||||
#![deny(clippy::pedantic)]
|
||||
#![allow(clippy::module_name_repetitions)]
|
||||
#![allow(clippy::missing_errors_doc)]
|
||||
#![allow(clippy::missing_panics_doc)]
|
||||
|
||||
mod bimap;
|
||||
mod cpnat;
|
||||
|
@ -15,11 +15,9 @@ pub struct NetworkAddressTable {
|
||||
|
||||
impl NetworkAddressTable {
|
||||
/// Construct a new empty `NetworkAddressTable`
|
||||
#[must_use]
|
||||
pub fn new() -> Self {
|
||||
Self {
|
||||
addr_map: BiHashMap::new(),
|
||||
timeouts: FxHashMap::default(),
|
||||
}
|
||||
Self::default()
|
||||
}
|
||||
|
||||
/// Prune all old mappings
|
||||
@ -85,3 +83,12 @@ impl NetworkAddressTable {
|
||||
self.addr_map.get_left(&right.into()).copied()
|
||||
}
|
||||
}
|
||||
|
||||
impl Default for NetworkAddressTable {
|
||||
fn default() -> Self {
|
||||
Self {
|
||||
addr_map: BiHashMap::new(),
|
||||
timeouts: FxHashMap::default(),
|
||||
}
|
||||
}
|
||||
}
|
17
libs/interproto/Cargo.toml
Normal file
17
libs/interproto/Cargo.toml
Normal file
@ -0,0 +1,17 @@
|
||||
[package]
|
||||
name = "interproto"
|
||||
version = "0.1.0"
|
||||
authors = ["Evan Pratten <ewpratten@gmail.com>"]
|
||||
edition = "2021"
|
||||
description = "Utilities for translating packets between IPv4 and IPv6"
|
||||
readme = "README.md"
|
||||
homepage = "https://github.com/ewpratten/protomask/tree/master/libs/interproto"
|
||||
documentation = "https://docs.rs/interproto"
|
||||
repository = "https://github.com/ewpratten/protomask"
|
||||
license = "GPL-3.0"
|
||||
keywords = []
|
||||
categories = []
|
||||
|
||||
[dependencies]
|
||||
log = "^0.4"
|
||||
pnet = "^0.34.0"
|
0
libs/interproto/README.md
Normal file
0
libs/interproto/README.md
Normal file
5
libs/interproto/src/lib.rs
Normal file
5
libs/interproto/src/lib.rs
Normal file
@ -0,0 +1,5 @@
|
||||
#![doc = include_str!("../README.md")]
|
||||
#![deny(clippy::pedantic)]
|
||||
#![allow(clippy::module_name_repetitions)]
|
||||
#![allow(clippy::missing_errors_doc)]
|
||||
#![allow(clippy::missing_panics_doc)]
|
Loading…
x
Reference in New Issue
Block a user