Deleted Added
full compact
ipproto.c (147899) ipproto.c (162017)
1/*
2 * Redistribution and use in source and binary forms, with or without
3 * modification, are permitted provided that: (1) source code
4 * distributions retain the above copyright notice and this paragraph
5 * in its entirety, and (2) distributions including binary code include
6 * the above copyright notice and this paragraph in its entirety in
7 * the documentation or other materials provided with the distribution.
8 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND
9 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
10 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
11 * FOR A PARTICULAR PURPOSE.
12 *
13 * Original code by Hannes Gredler (hannes@juniper.net)
14 */
15
16#ifndef lint
17static const char rcsid[] _U_ =
1/*
2 * Redistribution and use in source and binary forms, with or without
3 * modification, are permitted provided that: (1) source code
4 * distributions retain the above copyright notice and this paragraph
5 * in its entirety, and (2) distributions including binary code include
6 * the above copyright notice and this paragraph in its entirety in
7 * the documentation or other materials provided with the distribution.
8 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND
9 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
10 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
11 * FOR A PARTICULAR PURPOSE.
12 *
13 * Original code by Hannes Gredler (hannes@juniper.net)
14 */
15
16#ifndef lint
17static const char rcsid[] _U_ =
18 "@(#) $Header: /tcpdump/master/tcpdump/ipproto.c,v 1.3.2.2 2005/05/20 21:15:45 hannes Exp $ (LBL)";
18 "@(#) $Header: /tcpdump/master/tcpdump/ipproto.c,v 1.3.2.3 2005/09/20 06:05:37 guy Exp $ (LBL)";
19#endif
20
21#ifdef HAVE_CONFIG_H
22#include "config.h"
23#endif
24
25#include <tcpdump-stdinc.h>
26

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

31 { IPPROTO_HOPOPTS, "Options" },
32 { IPPROTO_ICMP, "ICMP" },
33 { IPPROTO_IGMP, "IGMP" },
34 { IPPROTO_IPV4, "IPIP" },
35 { IPPROTO_TCP, "TCP" },
36 { IPPROTO_EGP, "EGP" },
37 { IPPROTO_PIGP, "IGRP" },
38 { IPPROTO_UDP, "UDP" },
19#endif
20
21#ifdef HAVE_CONFIG_H
22#include "config.h"
23#endif
24
25#include <tcpdump-stdinc.h>
26

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

31 { IPPROTO_HOPOPTS, "Options" },
32 { IPPROTO_ICMP, "ICMP" },
33 { IPPROTO_IGMP, "IGMP" },
34 { IPPROTO_IPV4, "IPIP" },
35 { IPPROTO_TCP, "TCP" },
36 { IPPROTO_EGP, "EGP" },
37 { IPPROTO_PIGP, "IGRP" },
38 { IPPROTO_UDP, "UDP" },
39 { IPPROTO_DCCP, "DCCP" },
39 { IPPROTO_IPV6, "IPv6" },
40 { IPPROTO_ROUTING, "Routing" },
41 { IPPROTO_FRAGMENT, "Fragment" },
42 { IPPROTO_RSVP, "RSVP" },
43 { IPPROTO_GRE, "GRE" },
44 { IPPROTO_ESP, "ESP" },
45 { IPPROTO_AH, "AH" },
46 { IPPROTO_MOBILE, "Mobile IP" },

--- 13 unchanged lines hidden ---
40 { IPPROTO_IPV6, "IPv6" },
41 { IPPROTO_ROUTING, "Routing" },
42 { IPPROTO_FRAGMENT, "Fragment" },
43 { IPPROTO_RSVP, "RSVP" },
44 { IPPROTO_GRE, "GRE" },
45 { IPPROTO_ESP, "ESP" },
46 { IPPROTO_AH, "AH" },
47 { IPPROTO_MOBILE, "Mobile IP" },

--- 13 unchanged lines hidden ---