components

Module udp_driver

Source
Expand description

Component to initialize the userland UDP driver.

This provides one Component, UDPDriverComponent. This component initializes a userspace UDP driver that allows apps to use the UDP stack.

§Usage

   let udp_driver = UDPDriverComponent::new(
       board_kernel,
       udp_send_mux,
       udp_recv_mux,
       udp_port_table,
       local_ip_ifaces,
       PAYLOAD_LEN,
    )
    .finalize(components::udp_driver_component_static!());

Structs§