diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-17 00:27:06 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-17 00:27:06 -0400 |
commit | 767547ed81651a4ff6977c34c3033c82e1ebee16 (patch) | |
tree | 1409a856238d5b8378beac39b99a05a03a97f487 /sys/include/netinet/if_ether.h | |
parent | 74851a0f0d6db52659d57000830d078359db4d6d (diff) |
kernel: netinet: Implement ARP reply logic
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/netinet/if_ether.h')
-rw-r--r-- | sys/include/netinet/if_ether.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/netinet/if_ether.h b/sys/include/netinet/if_ether.h index 571622d..d3dc9b7 100644 --- a/sys/include/netinet/if_ether.h +++ b/sys/include/netinet/if_ether.h @@ -51,5 +51,6 @@ struct ether_frame { }; int arp_request(struct netif *nifp, uint8_t *sproto, uint8_t *tproto); +int arp_reply(struct netif *netif, uint8_t *sproto, uint8_t *tproto); #endif /* !_NETINET_IF_ETHER_H_ */ |