diff options
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,6 @@ [package] name = "rsdsl_ip_config" -version = "0.2.4" +version = "0.3.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -2,7 +2,8 @@ use std::net::{Ipv4Addr, Ipv6Addr}; use serde::{Deserialize, Serialize}; -pub const LOCATION: &str = "/data/pppoe.ip_config"; +pub const LOCATION: &str = "/tmp/pppoe.ip_config"; +pub const LOCATION_LAST: &str = "/data/pppoe.last"; #[derive(Clone, Copy, Debug, Eq, PartialEq, Serialize, Deserialize)] pub struct Ipv4Config { |