diff options
author | FxQnLr <[email protected]> | 2024-04-15 20:33:32 +0200 |
---|---|---|
committer | FxQnLr <[email protected]> | 2024-04-15 20:33:32 +0200 |
commit | d3cf93fb6c9b7e0faf9b7907328f0a042009e164 (patch) | |
tree | a55ec4f56e16de701c6764b559c776b38bc11637 /src/storage.rs | |
parent | b615f6e34e084d520dcc301058b5926074188500 (diff) | |
download | webol-d3cf93fb6c9b7e0faf9b7907328f0a042009e164.tar webol-d3cf93fb6c9b7e0faf9b7907328f0a042009e164.tar.gz webol-d3cf93fb6c9b7e0faf9b7907328f0a042009e164.zip |
Closes #35. Entry of Ip optional, error on ping request without saved ip
Diffstat (limited to 'src/storage.rs')
-rw-r--r-- | src/storage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storage.rs b/src/storage.rs index 0da245b..52c2e60 100644 --- a/src/storage.rs +++ b/src/storage.rs | |||
@@ -18,7 +18,7 @@ pub struct Device { | |||
18 | pub id: String, | 18 | pub id: String, |
19 | pub mac: MacAddress, | 19 | pub mac: MacAddress, |
20 | pub broadcast_addr: String, | 20 | pub broadcast_addr: String, |
21 | pub ip: IpNetwork, | 21 | pub ip: Option<IpNetwork>, |
22 | pub times: Option<Vec<i64>>, | 22 | pub times: Option<Vec<i64>>, |
23 | } | 23 | } |
24 | 24 | ||