blob: d8701255142f2b839cac2ee9d4103cbd09d109d3 [file] [log] [blame]
Joe Hershbergerd22c3382012-05-23 08:00:12 +00001/*
2 * RFC3927 ZeroConf IPv4 Link-Local addressing
3 * (see <http://www.zeroconf.org/>)
4 *
5 * Copied from BusyBox - networking/zcip.c
6 *
7 * Copyright (C) 2003 by Arthur van Hoff (avh@strangeberry.com)
8 * Copyright (C) 2004 by David Brownell
9 *
10 * Licensed under the GPL v2 or later
11 */
12
Joe Hershbergerd22c3382012-05-23 08:00:12 +000013#ifndef __LINK_LOCAL_H__
14#define __LINK_LOCAL_H__
15
Tom Rinicb3ce952023-12-14 13:16:47 -050016struct arp_hdr;
Joe Hershbergerd22c3382012-05-23 08:00:12 +000017
18void link_local_receive_arp(struct arp_hdr *arp, int len);
19void link_local_start(void);
20
21#endif /* __LINK_LOCAL_H__ */