pub struct LibSSL {
    fuzz_stream: UnixStream,
    agent_descriptor: AgentDescriptor<SshDescriptorConfig>,
    session: SshSession,
    state: PutState,
    put_fd: RawFd,
}Fields§
§fuzz_stream: UnixStream§agent_descriptor: AgentDescriptor<SshDescriptorConfig>§session: SshSession§state: PutState§put_fd: RawFdTrait Implementations§
source§impl Put<SshProtocolBehavior> for LibSSL
 
impl Put<SshProtocolBehavior> for LibSSL
source§fn progress(&mut self) -> Result<(), Error>
 
fn progress(&mut self) -> Result<(), Error>
Process incoming buffer, internal progress, can fill in the output buffer
fn descriptor(&self) -> &AgentDescriptor<SshDescriptorConfig>
source§fn describe_state(&self) -> String
 
fn describe_state(&self) -> String
Returns a textual representation of the state in which self is
source§fn is_state_successful(&self) -> bool
 
fn is_state_successful(&self) -> bool
Checks whether the Put is in a good state
source§impl Stream<SshProtocolBehavior> for LibSSL
 
impl Stream<SshProtocolBehavior> for LibSSL
fn add_to_inbound(&mut self, message: &ConcreteMessage)
source§fn take_message_from_outbound(
    &mut self,
) -> Result<Option<RawSshMessageFlight>, Error>
 
fn take_message_from_outbound( &mut self, ) -> Result<Option<RawSshMessageFlight>, Error>
Takes a single TLS message from the outbound channel
Auto Trait Implementations§
impl Freeze for LibSSL
impl RefUnwindSafe for LibSSL
impl Send for LibSSL
impl Sync for LibSSL
impl Unpin for LibSSL
impl UnwindSafe for LibSSL
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
§impl<Tail, T> Prepend<T> for Tail
 
impl<Tail, T> Prepend<T> for Tail
§type PreprendResult = Tail
 
type PreprendResult = Tail
The Resulting [
TupleList], of an [Prepend::prepend()] call,
including the prepended entry.