summaryrefslogtreecommitdiff
path: root/print-raw.c
diff options
context:
space:
mode:
authorguy <guy>2002-12-19 09:39:10 +0000
committerguy <guy>2002-12-19 09:39:10 +0000
commit4bec97f457e593be925e92fa28d73af6a57d81cf (patch)
treefcb53f0e4e3a5749d84858f128e7f6c7e352c23e /print-raw.c
parent60761585472a90c34d7de7bdf50475f0d7261b2d (diff)
downloadtcpdump-4bec97f457e593be925e92fa28d73af6a57d81cf.tar.gz
Hoist a bunch of stuff that should be done by all if_print routines into
tcpdump.c. Have if_print routines return the length of the link-layer header, so that the common code knows how to skip the link-layer header when printing the packet in hex/ASCII.
Diffstat (limited to 'print-raw.c')
-rw-r--r--print-raw.c28
1 files changed, 5 insertions, 23 deletions
diff --git a/print-raw.c b/print-raw.c
index 88a276f6..08cee76c 100644
--- a/print-raw.c
+++ b/print-raw.c
@@ -21,7 +21,7 @@
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /tcpdump/master/tcpdump/print-raw.c,v 1.38 2002-12-18 08:53:23 guy Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-raw.c,v 1.39 2002-12-19 09:39:15 guy Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
@@ -41,31 +41,13 @@ static const char rcsid[] =
* The DLT_RAW packet has no header. It contains a raw IP packet.
*/
-void
-raw_if_print(u_char *user _U_, const struct pcap_pkthdr *h, const u_char *p)
+u_int
+raw_if_print(const struct pcap_pkthdr *h, const u_char *p)
{
- u_int length = h->len;
- u_int caplen = h->caplen;
-
- ++infodelay;
- ts_print(&h->ts);
-
- /*
- * Some printers want to check that they're not walking off the
- * end of the packet.
- * Rather than pass it all the way down, we set this global.
- */
- snapend = p + caplen;
-
if (eflag)
printf("ip: ");
- ipN_print(p, length);
+ ipN_print(p, h->len);
- if (xflag)
- default_print(p, caplen);
- putchar('\n');
- --infodelay;
- if (infoprint)
- info(0);
+ return (0);
}