forked from torrust/torrust-tracker-deployer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmod.rs
More file actions
17 lines (15 loc) · 618 Bytes
/
Copy pathmod.rs
File metadata and controls
17 lines (15 loc) · 618 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Network Testing Utilities
//!
//! This module provides network-related testing utilities for checking port
//! connectivity and port usage. These utilities are used exclusively in tests
//! to verify network connectivity and diagnose port conflicts.
//!
//! ## Modules
//!
//! - `port_checker` - TCP port connectivity checking
//! - `port_usage_checker` - Port usage and process identification
pub mod port_checker;
pub mod port_usage_checker;
// Re-export commonly used types for convenience
pub use port_checker::{PortChecker, PortCheckerError};
pub use port_usage_checker::{PortUsageChecker, PortUsageError};