2021-10-19 12:43:28 +02:00
|
|
|
/* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
* Copyright (c) 2021 Red Hat GmbH
|
|
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2022-03-26 00:05:31 +01:00
|
|
|
#ifndef ARP_H
|
|
|
|
#define ARP_H
|
|
|
|
|
2021-05-21 11:14:52 +02: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 07:23:21 +01:00
|
|
|
int arp(const struct ctx *c, const struct pool *p);
|
2022-03-26 00:05:31 +01:00
|
|
|
|
|
|
|
#endif /* ARP_H */
|