extern structstd.os.uefi.protocol.managed_network.ManagedNetwork.ReceiveData[src]

Fields

timestamp: Time
recycle_event: Event
packet_length: u32
header_length: u32
address_length: u32
data_length: u32
broadcast_flag: bool
multicast_flag: bool
promiscuous_flag: bool
protocol_type: u16
destination_address: [*]u8
source_address: [*]u8
media_header: [*]u8
packet_data: [*]u8

Source Code

Source code
pub const ReceiveData = extern struct {
    timestamp: Time,
    recycle_event: Event,
    packet_length: u32,
    header_length: u32,
    address_length: u32,
    data_length: u32,
    broadcast_flag: bool,
    multicast_flag: bool,
    promiscuous_flag: bool,
    protocol_type: u16,
    destination_address: [*]u8,
    source_address: [*]u8,
    media_header: [*]u8,
    packet_data: [*]u8,
}