a151a03181
* squashing Lp/ip pool fixes#6412 removed unused imports gateway probe fixes PSK injection + test fixes cleanup minus PSK injection combine with lp reg moved authenticator peer registration to centralised location bugfix: ensure IpPool never allocates gateway ip ip pool allocation tests * review fixes * test fixes
31 lines
829 B
Rust
31 lines
829 B
Rust
// Copyright 2024 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use crate::IpPoolError;
|
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
pub enum Error {
|
|
#[error("{0}")]
|
|
Defguard(#[from] defguard_wireguard_rs::error::WireguardInterfaceError),
|
|
|
|
#[error("internal {0}")]
|
|
Internal(String),
|
|
|
|
#[error("storage should have the requested bandwidth entry")]
|
|
MissingClientBandwidthEntry,
|
|
|
|
#[error("kernel should have the requested client entry: {0}")]
|
|
MissingClientKernelEntry(String),
|
|
|
|
#[error("{0}")]
|
|
GatewayStorage(#[from] nym_gateway_storage::error::GatewayStorageError),
|
|
|
|
#[error("{0}")]
|
|
SystemTime(#[from] std::time::SystemTimeError),
|
|
|
|
#[error("IP pool error: {0}")]
|
|
IpPool(#[from] IpPoolError),
|
|
}
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|