mirror of
https://git.savannah.nongnu.org/git/lwip.git
synced 2026-05-13 19:57:05 +08:00
etharp_query() has error return type now. Matched dhcp.c with this change.
Added debug messages in other places.
This commit is contained in:
@@ -59,7 +59,7 @@ typedef enum {
|
||||
#define PBUF_FLAG_ROM 0x01 /* Flags that pbuf data is stored in ROM. */
|
||||
#define PBUF_FLAG_POOL 0x02 /* Flags that the pbuf comes from the
|
||||
pbuf pool. */
|
||||
#define PBUF_FLAG_REF 0x03
|
||||
#define PBUF_FLAG_REF 0x04
|
||||
|
||||
struct pbuf {
|
||||
struct pbuf *next;
|
||||
|
||||
@@ -91,7 +91,7 @@ struct pbuf *etharp_arp_input(struct netif *netif, struct eth_addr *ethaddr,
|
||||
struct pbuf *p);
|
||||
struct pbuf *etharp_output(struct netif *netif, struct ip_addr *ipaddr,
|
||||
struct pbuf *q);
|
||||
struct pbuf *etharp_query(struct netif *netif, struct ip_addr *ipaddr, struct pbuf *q);
|
||||
err_t etharp_query(struct netif *netif, struct ip_addr *ipaddr, struct pbuf *q);
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user