Deleted Added
full compact
inet.c (14268) inet.c (14543)
1/*
2 * Copyright (c) 1983, 1988, 1993, 1995
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

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

31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35static char sccsid[] = "@(#)inet.c 8.5 (Berkeley) 5/24/95";
36#endif /* not lint */
37
38#include <sys/param.h>
1/*
2 * Copyright (c) 1983, 1988, 1993, 1995
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

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

31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35static char sccsid[] = "@(#)inet.c 8.5 (Berkeley) 5/24/95";
36#endif /* not lint */
37
38#include <sys/param.h>
39#include <sys/queue.h>
39#include <sys/socket.h>
40#include <sys/socketvar.h>
41#include <sys/mbuf.h>
42#include <sys/protosw.h>
40#include <sys/socket.h>
41#include <sys/socketvar.h>
42#include <sys/mbuf.h>
43#include <sys/protosw.h>
43#include <sys/queue.h>
44
45#include <net/route.h>
46#include <netinet/in.h>
47#include <netinet/in_systm.h>
48#include <netinet/ip.h>
49#include <netinet/in_pcb.h>
50#include <netinet/ip_icmp.h>
51#include <netinet/icmp_var.h>

--- 449 unchanged lines hidden ---
44
45#include <net/route.h>
46#include <netinet/in.h>
47#include <netinet/in_systm.h>
48#include <netinet/ip.h>
49#include <netinet/in_pcb.h>
50#include <netinet/ip_icmp.h>
51#include <netinet/icmp_var.h>

--- 449 unchanged lines hidden ---