Struct shadow_rs::host::descriptor::socket::netlink::NetlinkSocket

source ·
pub struct NetlinkSocket { /* private fields */ }

Implementations§

source§

impl NetlinkSocket

source

pub fn new( status: FileStatus, _socket_type: NetlinkSocketType, _family: NetlinkFamily, ) -> Arc<AtomicRefCell<Self>>

source

pub fn status(&self) -> FileStatus

source

pub fn set_status(&mut self, status: FileStatus)

source

pub fn mode(&self) -> FileMode

source

pub fn has_open_file(&self) -> bool

source

pub fn supports_sa_restart(&self) -> bool

source

pub fn set_has_open_file(&mut self, val: bool)

source

pub fn getsockname(&self) -> Result<Option<NetlinkAddr>, Errno>

source

pub fn getpeername(&self) -> Result<Option<NetlinkAddr>, Errno>

source

pub fn address_family(&self) -> AddressFamily

source

pub fn close( &mut self, cb_queue: &mut CallbackQueue, ) -> Result<(), SyscallError>

source

pub fn shutdown( &mut self, _how: Shutdown, _cb_queue: &mut CallbackQueue, ) -> Result<(), SyscallError>

source

pub fn getsockopt( &mut self, _level: c_int, _optname: c_int, _optval_ptr: ForeignPtr<()>, _optlen: socklen_t, _memory_manager: &mut MemoryManager, _cb_queue: &mut CallbackQueue, ) -> Result<socklen_t, SyscallError>

source

pub fn setsockopt( &mut self, level: c_int, optname: c_int, optval_ptr: ForeignPtr<()>, optlen: socklen_t, memory_manager: &MemoryManager, ) -> Result<(), SyscallError>

source

pub fn bind( socket: &Arc<AtomicRefCell<Self>>, addr: Option<&SockaddrStorage>, _net_ns: &NetworkNamespace, rng: impl Rng, ) -> Result<(), SyscallError>

source

pub fn readv( &mut self, _iovs: &[IoVec], _offset: Option<off_t>, _flags: c_int, _mem: &mut MemoryManager, _cb_queue: &mut CallbackQueue, ) -> Result<ssize_t, SyscallError>

source

pub fn writev( &mut self, _iovs: &[IoVec], _offset: Option<off_t>, _flags: c_int, _mem: &mut MemoryManager, _cb_queue: &mut CallbackQueue, ) -> Result<ssize_t, SyscallError>

source

pub fn sendmsg( socket: &Arc<AtomicRefCell<Self>>, args: SendmsgArgs<'_>, mem: &mut MemoryManager, _net_ns: &NetworkNamespace, _rng: impl Rng, cb_queue: &mut CallbackQueue, ) -> Result<ssize_t, SyscallError>

source

pub fn recvmsg( socket: &Arc<AtomicRefCell<Self>>, args: RecvmsgArgs<'_>, mem: &mut MemoryManager, cb_queue: &mut CallbackQueue, ) -> Result<RecvmsgReturn, SyscallError>

source

pub fn listen( _socket: &Arc<AtomicRefCell<Self>>, _backlog: i32, _net_ns: &NetworkNamespace, _rng: impl Rng, _cb_queue: &mut CallbackQueue, ) -> Result<(), Errno>

source

pub fn connect( _socket: &Arc<AtomicRefCell<Self>>, _addr: &SockaddrStorage, _net_ns: &NetworkNamespace, _rng: impl Rng, _cb_queue: &mut CallbackQueue, ) -> Result<(), SyscallError>

source

pub fn accept( &mut self, _net_ns: &NetworkNamespace, _rng: impl Rng, _cb_queue: &mut CallbackQueue, ) -> Result<OpenFile, SyscallError>

source

pub fn ioctl( &mut self, request: IoctlRequest, _arg_ptr: ForeignPtr<()>, _memory_manager: &mut MemoryManager, ) -> SyscallResult

source

pub fn stat(&self) -> Result<stat, SyscallError>

source

pub fn add_listener( &mut self, monitoring_state: FileState, monitoring_signals: FileSignals, filter: StateListenerFilter, notify_fn: impl Fn(FileState, FileState, FileSignals, &mut CallbackQueue) + Send + Sync + 'static, ) -> StateListenHandle

source

pub fn add_legacy_listener(&mut self, ptr: HostTreePointer<StatusListener>)

source

pub fn remove_legacy_listener(&mut self, ptr: *mut StatusListener)

source

pub fn state(&self) -> FileState

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> NoTypeInference for T

source§

type This = T

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
source§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V