Skip to content
Snippets Groups Projects
Commit c4a43846 authored by Moritz Bitsch's avatar Moritz Bitsch
Browse files

Use Box to store UserID and DeviceID

Userid and DeviceID are of unknown size, use Box to be able to store
them into the userdevicesessionid_uiaarequest BTreeMap
parent 720a54b3
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@
pub struct Uiaa {
pub(super) userdevicesessionid_uiaainfo: Arc<dyn Tree>, // User-interactive authentication
pub(super) userdevicesessionid_uiaarequest:
RwLock<BTreeMap<(String, String, String), CanonicalJsonValue>>,
RwLock<BTreeMap<(Box<UserId>, Box<DeviceId>, String), CanonicalJsonValue>>,
}
impl Uiaa {
......@@ -155,8 +155,8 @@ fn set_uiaa_request(
.unwrap()
.insert(
(
user_id.to_string(),
device_id.to_string(),
user_id.to_owned(),
device_id.to_owned(),
session.to_string(),
),
request.to_owned(),
......@@ -176,8 +176,8 @@ pub fn get_uiaa_request(
.read()
.unwrap()
.get(&(
user_id.to_string(),
device_id.to_string(),
user_id.to_owned(),
device_id.to_owned(),
session.to_string(),
))
.map(|j| j.to_owned()))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment