mirror of
https://github.com/apache/nuttx.git
synced 2026-05-25 01:26:56 +08:00
Rename uip_input to devif_input
This commit is contained in:
@@ -227,7 +227,7 @@ struct net_driver_s
|
||||
* dev->d_len = devicedriver_poll();
|
||||
* if (dev->d_len > 0)
|
||||
* {
|
||||
* uip_input(dev);
|
||||
* devif_input(dev);
|
||||
* if (dev->d_len > 0)
|
||||
* {
|
||||
* devicedriver_send();
|
||||
@@ -246,7 +246,7 @@ struct net_driver_s
|
||||
* if (BUF->type == HTONS(UIP_ETHTYPE_IP))
|
||||
* {
|
||||
* arp_ipin();
|
||||
* uip_input(dev);
|
||||
* devif_input(dev);
|
||||
* if (dev->d_len > 0)
|
||||
* {
|
||||
* arp_out();
|
||||
@@ -263,7 +263,7 @@ struct net_driver_s
|
||||
* }
|
||||
*/
|
||||
|
||||
int uip_input(struct net_driver_s *dev);
|
||||
int devif_input(struct net_driver_s *dev);
|
||||
|
||||
/* Polling of connections
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user