#![warn(missing_docs)]
pub(crate) use irontide_engine_support::error;
pub use irontide_engine_support::i2p;
pub(crate) use irontide_engine_support::rate_limiter;
pub use irontide_engine_support::stats;
pub use irontide_engine_support::transport;
pub(crate) use irontide_engine::metadata;
pub use irontide_engine::{
alert, disk, disk_backend, extension, hash_pool, streaming, url_guard, verify_before_download,
};
pub mod apply;
pub mod category_manager;
pub mod listener;
pub mod lsd;
pub mod metadata_resolver;
pub mod notification;
pub mod persistence;
pub mod queue;
pub(crate) mod registry_common;
pub mod resume_file;
pub mod save_path;
pub mod settings_convert;
pub mod tag_manager;
pub mod types;
pub(crate) mod utp_routing;
pub use alert::{Alert, AlertCategory, AlertKind, AlertStream};
pub use apply::{ApplyError, Phase, ReconfigGuard, ReconfigInFlight, apply_phases_with_rollback};
pub use category_manager::{
CategoryError, CategoryMetadata, CategoryRegistry, resolve_category_registry_path,
};
pub use disk::{DiskConfig, DiskHandle, DiskJobFlags, DiskManagerHandle, DiskStats};
pub use disk_backend::{DisabledDiskIo, DiskIoBackend, DiskIoStats};
pub use error::{Error, Result};
pub use extension::ExtensionPlugin;
pub use hash_pool::{HashJob, HashPool, HashResult};
pub use i2p::{I2pDestination, I2pDestinationError};
pub use irontide_core::validate_resume_bitfield;
pub use irontide_core::{WebSeedState, WebSeedStats};
pub use irontide_engine::{
ChokingAlgorithm, PeerPipelineSnapshot, PeerSource, ProxyConfig, ProxyType,
SeedChokingAlgorithm, TorrentHandle, TrackerInfo, TrackerStatus, build_wanted_pieces,
};
pub use irontide_session_types::ban::BanConfig;
pub use irontide_session_types::ip_filter::{
IpFilter, IpFilterError, PortFilter, parse_dat, parse_p2p,
};
pub use irontide_settings::{
DEFAULT_ADMINADMIN_HASH, MaxRatioAction, QbtCompatSettings, QbtCredentialMigration,
QbtMigrationError, Settings, SettingsError, hash_qbt_password, migrate_qbt_credentials,
};
pub use persistence::{DhtNodeEntry, PeerStrikeEntry, SessionState};
pub use rate_limiter::MixedModeAlgorithm;
pub use resume_file::{ResumeFileError, default_resume_dir};
pub use save_path::{
ExpandSavePathError, SimpleContentType, TorrentSavePathContext, expand_save_path_for_category,
expand_save_path_template,
};
pub use stats::{
MetricKind, NUM_METRICS, SessionCounters, SessionStatsMetric, session_stats_metrics,
};
pub use streaming::FileStream;
pub use tag_manager::{TagError, TagRegistry, resolve_tag_registry_path};
pub use transport::{BoxedStream, NetworkFactory, TransportListener};
pub use types::{
DebugDispatchState, DebugPeerState, DebugState, DebugTorrentState, FileInfo, FileMode,
FileStatus, PartialPieceInfo, PeerInfo, SessionStats, StorageFactory, TorrentConfig,
TorrentFlags, TorrentInfo, TorrentState, TorrentStats, TorrentSummary,
};