Deleted Added
full compact
netstat.c (8874) netstat.c (14543)
1/*-
2 * Copyright (c) 1980, 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

34#ifndef lint
35static char sccsid[] = "@(#)netstat.c 8.1 (Berkeley) 6/6/93";
36#endif /* not lint */
37
38/*
39 * netstat
40 */
41#include <sys/param.h>
1/*-
2 * Copyright (c) 1980, 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

34#ifndef lint
35static char sccsid[] = "@(#)netstat.c 8.1 (Berkeley) 6/6/93";
36#endif /* not lint */
37
38/*
39 * netstat
40 */
41#include <sys/param.h>
42#include <sys/queue.h>
42#include <sys/socket.h>
43#include <sys/socketvar.h>
44#include <sys/mbuf.h>
45#include <sys/protosw.h>
43#include <sys/socket.h>
44#include <sys/socketvar.h>
45#include <sys/mbuf.h>
46#include <sys/protosw.h>
46#include <sys/queue.h>
47
48#include <netinet/in.h>
49#include <net/route.h>
50#include <netinet/in_systm.h>
51#include <netinet/ip.h>
52#include <netinet/in_pcb.h>
53#include <netinet/ip_icmp.h>
54#include <netinet/icmp_var.h>

--- 409 unchanged lines hidden ---
47
48#include <netinet/in.h>
49#include <net/route.h>
50#include <netinet/in_systm.h>
51#include <netinet/ip.h>
52#include <netinet/in_pcb.h>
53#include <netinet/ip_icmp.h>
54#include <netinet/icmp_var.h>

--- 409 unchanged lines hidden ---