Struct esp_idf_sys::ip_globals
source · #[repr(C)]pub struct ip_globals {
pub current_netif: *mut netif,
pub current_input_netif: *mut netif,
pub current_ip4_header: *const ip_hdr,
pub current_ip6_header: *mut ip6_hdr,
pub current_ip_header_tot_len: u16_t,
pub current_iphdr_src: ip_addr_t,
pub current_iphdr_dest: ip_addr_t,
}
Expand description
Global variables of this module, kept in a struct for efficient access using base+index.
Fields§
§current_netif: *mut netif
The interface that accepted the packet for the current callback invocation.
current_input_netif: *mut netif
The interface that received the packet for the current callback invocation.
current_ip4_header: *const ip_hdr
Header of the input packet currently being processed.
current_ip6_header: *mut ip6_hdr
Header of the input IPv6 packet currently being processed.
current_ip_header_tot_len: u16_t
Total header length of current_ip4/6_header (i.e. after this, the UDP/TCP header starts)
current_iphdr_src: ip_addr_t
Source IP address of current_header
current_iphdr_dest: ip_addr_t
Destination IP address of current_header
Trait Implementations§
source§impl Clone for ip_globals
impl Clone for ip_globals
source§fn clone(&self) -> ip_globals
fn clone(&self) -> ip_globals
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for ip_globals
impl Default for ip_globals
impl Copy for ip_globals
Auto Trait Implementations§
impl Freeze for ip_globals
impl RefUnwindSafe for ip_globals
impl !Send for ip_globals
impl !Sync for ip_globals
impl Unpin for ip_globals
impl UnwindSafe for ip_globals
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)