2021-10-19 10:43:28 +00:00
|
|
|
/* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
* Copyright (c) 2021 Red Hat GmbH
|
|
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2022-03-25 23:05:31 +00:00
|
|
|
#ifndef ARP_H
|
|
|
|
#define ARP_H
|
|
|
|
|
2021-05-21 09:14:52 +00:00
|
|
|
/**
|
|
|
|
* struct arpmsg - 802.2 ARP IPv4 payload
|
|
|
|
* @sha: Sender hardware address
|
|
|
|
* @sip: Sender IP address
|
|
|
|
* @tha: Target hardware address
|
|
|
|
* @tip: Target IP address
|
|
|
|
*/
|
|
|
|
struct arpmsg {
|
|
|
|
unsigned char sha[ETH_ALEN];
|
|
|
|
unsigned char sip[4];
|
|
|
|
unsigned char tha[ETH_ALEN];
|
|
|
|
unsigned char tip[4];
|
|
|
|
} __attribute__((__packed__));
|
|
|
|
|
2022-03-26 06:23:21 +00:00
|
|
|
int arp(const struct ctx *c, const struct pool *p);
|
2022-03-25 23:05:31 +00:00
|
|
|
|
|
|
|
#endif /* ARP_H */
|