pub struct TsConnectInfo {
pub cid: [u8; 16],
pub unk0: [u8; 16],
pub aid: [u8; 16],
pub bootid: [u8; 16],
pub pt: [u8; 8],
}Expand description
Connection information required to open a session with the TS server
Fields§
§cid: [u8; 16]§unk0: [u8; 16]§aid: [u8; 16]§bootid: [u8; 16]§pt: [u8; 8]Implementations§
Source§impl TsConnectInfo
impl TsConnectInfo
Sourcepub fn new_simple(cid: [u8; 16]) -> Self
pub fn new_simple(cid: [u8; 16]) -> Self
Connect using the provided Crowdstrike customer ID The CID must belong to an active customer. Unlike for the LSO server and falcon-sensor it’s not enough to use a structurally valid but inactive CID. Uses hardcoded default values for the other non-critical fields.
pub fn new_custom( cid: [u8; 16], unk0: [u8; 16], aid: [u8; 16], bootid: [u8; 16], pt: [u8; 8], ) -> Self
Trait Implementations§
Source§impl Clone for TsConnectInfo
impl Clone for TsConnectInfo
Source§fn clone(&self) -> TsConnectInfo
fn clone(&self) -> TsConnectInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TsConnectInfo
impl Debug for TsConnectInfo
Source§impl PartialEq for TsConnectInfo
impl PartialEq for TsConnectInfo
impl Eq for TsConnectInfo
impl StructuralPartialEq for TsConnectInfo
Auto Trait Implementations§
impl Freeze for TsConnectInfo
impl RefUnwindSafe for TsConnectInfo
impl Send for TsConnectInfo
impl Sync for TsConnectInfo
impl Unpin for TsConnectInfo
impl UnwindSafe for TsConnectInfo
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