blob: 9054db21a39e2c69582f7c4fda8b71bb77cc77bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _IPXE_RARP_H
#define _IPXE_RARP_H
/** @file
*
* Reverse Address Resolution Protocol
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <ipxe/netdevice.h>
extern struct net_protocol rarp_protocol __net_protocol;
#endif /* _IPXE_RARP_H */
|