1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/****************************************************************************
** File: slip.c
**
** Author: Michael S. Borella
**
** Comments: Dump slip packets
**
*****************************************************************************/
#include <stdio.h>
#include <pcap.h>
#include <unistd.h>
#include "config.h"
#define SLIP_HDRLEN 16
u_char *packet_ptr;
u_char *packet_end;
/*----------------------------------------------------------------------------
**
** dump_slip()
**
** Process packets from the DLT_RAW interface type
**
**----------------------------------------------------------------------------
*/
void dump_slip(u_char *user, const struct pcap_pkthdr *h, u_char *p)
{
u_int length;
u_int caplen;
struct ip *ip;
void dump_ip(u_char *, u_int);
/*
* Get total packet length and length of the captured section
*/
length = h->len;
caplen = h->caplen;
/*
* Dump raw header
*/
printf("==========================================================\n");
printf(" Slip Header (%u.%06u)\n",
(u_int32_t) h->ts.tv_sec, (u_int32_t) h->ts.tv_usec);
/*
* Check for a truncated packet
*/
if (caplen < SLIP_HDRLEN)
{
printf("Truncated slip header\n");
return;
}
/*
* Some printers want to get back at the link level addresses,
* and/or check that they're not walking off the end of the packet.
* Rather than pass them all the way down, we set these globals.
*/
packet_ptr = p;
packet_end = p + caplen;
/*
* Calculate length of IP header on out
*/
length -= SLIP_HDRLEN;
/*
* XXX write something to dump SLIP fields here!
*/
ip = (struct ip *) (p + SLIP_HDRLEN);
dump_ip((u_char *) ip, length);
}
|