blob: 7ade8312b6d842629fc30a661acd0b5b72e025d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _GPXE_RARP_H
#define _GPXE_RARP_H
/** @file
*
* Reverse Address Resolution Protocol
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
struct net_protocol;
extern struct net_protocol rarp_protocol;
#endif /* _GPXE_RARP_H */
|