1

Fix clippy errors and create new package

This commit is contained in:
Evan Pratten 2023-08-02 14:54:30 -04:00
parent fca597a194
commit ebbe72fc19
8 changed files with 54 additions and 9 deletions

View File

@ -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"]

View File

@ -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`.

View File

@ -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(),
}
}
}

View File

@ -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;

View File

@ -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(),
}
}
}

View 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"

View File

View 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)]