diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-11-17 17:39:33 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-11-17 17:39:33 +0800 |
| commit | 5055b1081be945f9c4191d0a83330683f6d151d3 (patch) | |
| tree | b3e043331ebfaf4628b6bb05f2c5d93c9d39637b /src/data.rs | |
| parent | af034c91f9405816cd08247b5e773595995cc46d (diff) | |
Track recent IP addresses in direct operations
Add IP address history functionality to store and retrieve recently used
IP addresses when performing direct operations. Maintains a history file
with up to 8 most recent IPs for quick access.
Diffstat (limited to 'src/data.rs')
| -rw-r--r-- | src/data.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/data.rs b/src/data.rs index 036fd98..d1c5d53 100644 --- a/src/data.rs +++ b/src/data.rs @@ -1,2 +1,4 @@ #[allow(dead_code)] pub mod compile_info; + +pub mod ipaddress_history; |
