Deleted Added
full compact
mtest.c (36440) mtest.c (78720)
1/*
2 * Program to test new [sg]etsockopts and ioctls for manipulating IP and
3 * Ethernet multicast address filters.
4 *
5 * Written by Steve Deering, Stanford University, February 1989.
6 */
7
1/*
2 * Program to test new [sg]etsockopts and ioctls for manipulating IP and
3 * Ethernet multicast address filters.
4 *
5 * Written by Steve Deering, Stanford University, February 1989.
6 */
7
8#ifndef lint
9static const char rcsid[] =
10 "$FreeBSD: head/usr.sbin/mtest/mtest.c 78720 2001-06-24 20:25:23Z dd $";
11#endif /* not lint */
12
8#include <err.h>
9#include <stdio.h>
13#include <err.h>
14#include <stdio.h>
15#include <stdlib.h>
10#include <sys/types.h>
11#include <sys/socket.h>
12#include <sys/time.h>
13#include <net/if.h>
14#include <net/if_dl.h>
15#include <sys/ioctl.h>
16#include <netinet/in.h>
17

--- 207 unchanged lines hidden ---
16#include <sys/types.h>
17#include <sys/socket.h>
18#include <sys/time.h>
19#include <net/if.h>
20#include <net/if_dl.h>
21#include <sys/ioctl.h>
22#include <netinet/in.h>
23

--- 207 unchanged lines hidden ---