diff options
Diffstat (limited to 'src/error.rs')
-rw-r--r-- | src/error.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/error.rs b/src/error.rs index 6ade514..6f5747d 100644 --- a/src/error.rs +++ b/src/error.rs @@ -4,6 +4,8 @@ use thiserror::Error; #[derive(Debug, Error)] pub enum Error { + #[error("no client duid")] + NoClientId, #[error("no domain name servers")] NoDns, #[error("no ia_pd")] @@ -12,8 +14,6 @@ pub enum Error { NoIAPDStatus, #[error("no ia_prefix")] NoIAPrefix, - #[error("no client duid")] - NoClientId, #[error("no server duid")] NoServerId, #[error("incomplete transmission")] |