Deleted Added
full compact
arp.c (20690) arp.c (21264)
1/*
2 * Copyright (c) 1984, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Sun Microsystems, Inc.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

37#ifndef lint
38static char const copyright[] =
39"@(#) Copyright (c) 1984, 1993\n\
40 The Regents of the University of California. All rights reserved.\n";
41#endif /* not lint */
42
43#ifndef lint
44static char const sccsid[] = "@(#)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 *
5 * This code is derived from software contributed to Berkeley by
6 * Sun Microsystems, Inc.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

37#ifndef lint
38static char const copyright[] =
39"@(#) Copyright (c) 1984, 1993\n\
40 The Regents of the University of California. All rights reserved.\n";
41#endif /* not lint */
42
43#ifndef lint
44static char const sccsid[] = "@(#)from: arp.c 8.2 (Berkeley) 1/2/94";
45static char const freebsdid[] = "$Id: arp.c,v 1.5 1996/12/10 17:00:34 wollman Exp $";
45static char const freebsdid[] = "$Id: arp.c,v 1.6 1996/12/19 19:33:10 nate Exp $";
46#endif /* not lint */
47
48/*
49 * arp - display, set, and delete arp table entries
50 */
51
52
53#include <sys/param.h>
54#include <sys/file.h>
55#include <sys/socket.h>
56#include <sys/sockio.h>
57#include <sys/sysctl.h>
58#include <sys/ioctl.h>
59#include <sys/time.h>
60
61#include <net/if.h>
46#endif /* not lint */
47
48/*
49 * arp - display, set, and delete arp table entries
50 */
51
52
53#include <sys/param.h>
54#include <sys/file.h>
55#include <sys/socket.h>
56#include <sys/sockio.h>
57#include <sys/sysctl.h>
58#include <sys/ioctl.h>
59#include <sys/time.h>
60
61#include <net/if.h>
62#include <net/if_var.h>
62#include <net/if_dl.h>
63#include <net/if_types.h>
64#include <net/route.h>
65
66#include <netinet/in.h>
67#include <netinet/if_ether.h>
68
69#include <arpa/inet.h>

--- 581 unchanged lines hidden ---
63#include <net/if_dl.h>
64#include <net/if_types.h>
65#include <net/route.h>
66
67#include <netinet/in.h>
68#include <netinet/if_ether.h>
69
70#include <arpa/inet.h>

--- 581 unchanged lines hidden ---