Deleted Added
full compact
rtmsg.c (20287) rtmsg.c (21264)
1/*
2 * Copyright (c) 1984, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1994
5 * Geoffrey M. Rehmet, All rights reserved.
6 *
7 * This code is derived from software which forms part of the 4.4-Lite
8 * Berkeley software distribution, which was in derived from software

--- 25 unchanged lines hidden (view full) ---

34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 */
39
40/*
41 * from arp.c 8.2 (Berkeley) 1/2/94
1/*
2 * Copyright (c) 1984, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1994
5 * Geoffrey M. Rehmet, All rights reserved.
6 *
7 * This code is derived from software which forms part of the 4.4-Lite
8 * Berkeley software distribution, which was in derived from software

--- 25 unchanged lines hidden (view full) ---

34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 */
39
40/*
41 * from arp.c 8.2 (Berkeley) 1/2/94
42 * $Id: rtmsg.c,v 1.4 1995/05/30 05:45:49 rgrimes Exp $
42 * $Id: rtmsg.c,v 1.5 1996/12/10 17:05:35 wollman Exp $
43 */
44
45#include <sys/param.h>
46/*
47 * Verify that we are at least 4.4 BSD
48 */
49#if defined(BSD)
50#if BSD >= 199306
51
52#include <sys/socket.h>
53#include <sys/filio.h>
54#include <sys/time.h>
55
56#include <net/if.h>
43 */
44
45#include <sys/param.h>
46/*
47 * Verify that we are at least 4.4 BSD
48 */
49#if defined(BSD)
50#if BSD >= 199306
51
52#include <sys/socket.h>
53#include <sys/filio.h>
54#include <sys/time.h>
55
56#include <net/if.h>
57#include <net/if_var.h> /* needed for if_ether.h XXX */
57#include <net/if_dl.h>
58#include <net/if_types.h>
59#include <net/route.h>
60
61#include <netinet/in.h>
62#include <netinet/if_ether.h>
63
64#include <arpa/inet.h>

--- 189 unchanged lines hidden ---
58#include <net/if_dl.h>
59#include <net/if_types.h>
60#include <net/route.h>
61
62#include <netinet/in.h>
63#include <netinet/if_ether.h>
64
65#include <arpa/inet.h>

--- 189 unchanged lines hidden ---