pub struct SessionSetupLegacyReq {
pub lm_resp: Vec<u8>,
pub nt_resp: Vec<u8>,
pub account: String,
pub domain: String,
}Expand description
Parsed legacy (WC=13) session setup request.
Fields§
§lm_resp: Vec<u8>Case-insensitive (LM) password response bytes.
nt_resp: Vec<u8>Case-sensitive (NTLM/NTLMv2) response bytes.
account: StringRequested account name.
domain: StringClient primary domain string.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SessionSetupLegacyReq
impl RefUnwindSafe for SessionSetupLegacyReq
impl Send for SessionSetupLegacyReq
impl Sync for SessionSetupLegacyReq
impl Unpin for SessionSetupLegacyReq
impl UnsafeUnpin for SessionSetupLegacyReq
impl UnwindSafe for SessionSetupLegacyReq
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more