Deleted Added
full compact
tcpdump.c (39298) tcpdump.c (44165)
1/*
2 * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
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: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and

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

86
87struct printer {
88 pcap_handler f;
89 int type;
90};
91
92static struct printer printers[] = {
93 { ether_if_print, DLT_EN10MB },
1/*
2 * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
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: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and

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

86
87struct printer {
88 pcap_handler f;
89 int type;
90};
91
92static struct printer printers[] = {
93 { ether_if_print, DLT_EN10MB },
94 { ether_if_print, DLT_IEEE802 },
94 { token_if_print, DLT_IEEE802 },
95 { sl_if_print, DLT_SLIP },
96 { sl_bsdos_if_print, DLT_SLIP_BSDOS },
97 { ppp_if_print, DLT_PPP },
98 { ppp_bsdos_if_print, DLT_PPP_BSDOS },
99 { fddi_if_print, DLT_FDDI },
100 { null_if_print, DLT_NULL },
101 { raw_if_print, DLT_RAW },
102 { atm_if_print, DLT_ATM_RFC1483 },

--- 350 unchanged lines hidden ---
95 { sl_if_print, DLT_SLIP },
96 { sl_bsdos_if_print, DLT_SLIP_BSDOS },
97 { ppp_if_print, DLT_PPP },
98 { ppp_bsdos_if_print, DLT_PPP_BSDOS },
99 { fddi_if_print, DLT_FDDI },
100 { null_if_print, DLT_NULL },
101 { raw_if_print, DLT_RAW },
102 { atm_if_print, DLT_ATM_RFC1483 },

--- 350 unchanged lines hidden ---