Wifi: Add ether_type to sending offloaded packet
This commit is part of the addition of the ether_type as an argument to the legacy hal function to send an offloaded packet. Bug: 122487582 Test: Manual Test: Make sure code builds properly Change-Id: I5c56acb74f5724ac3d6199433c7632177bfc9704
This commit is contained in:
parent
18bd84a68a
commit
fc49b8693e
1 changed files with 3 additions and 2 deletions
|
@ -365,8 +365,9 @@ typedef struct {
|
|||
wifi_error (*wifi_set_lcr) (wifi_request_id id, wifi_interface_handle iface,
|
||||
wifi_lcr_information *lcr);
|
||||
wifi_error (*wifi_start_sending_offloaded_packet)(wifi_request_id id,
|
||||
wifi_interface_handle iface, u8 *ip_packet, u16 ip_packet_len,
|
||||
u8 *src_mac_addr, u8 *dst_mac_addr, u32 period_msec);
|
||||
wifi_interface_handle iface, u16 ether_type, u8 *ip_packet,
|
||||
u16 ip_packet_len, u8 *src_mac_addr, u8 *dst_mac_addr,
|
||||
u32 period_msec);
|
||||
wifi_error (*wifi_stop_sending_offloaded_packet)(wifi_request_id id,
|
||||
wifi_interface_handle iface);
|
||||
wifi_error (*wifi_start_rssi_monitoring)(wifi_request_id id, wifi_interface_handle
|
||||
|
|
Loading…
Reference in a new issue