Struct esp_wifi::wifi::PromiscuousPkt
source · pub struct PromiscuousPkt<'a> {
pub rx_cntl: RxControlInfo,
pub frame_type: wifi_promiscuous_pkt_type_t,
pub len: usize,
pub data: &'a [u8],
}
Expand description
Represents a Wi-Fi packet in promiscuous mode.
Fields§
§rx_cntl: RxControlInfo
Control information related to packet reception.
frame_type: wifi_promiscuous_pkt_type_t
Frame type of the received packet.
len: usize
Length of the received packet.
data: &'a [u8]
Data contained in the received packet.