123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include <netdissect-stdinc.h>
- #include "netdissect.h"
- u_int
- raw_if_print(netdissect_options *ndo, const struct pcap_pkthdr *h, const u_char *p)
- {
- if (ndo->ndo_eflag)
- ND_PRINT((ndo, "ip: "));
- ipN_print(ndo, p, h->len);
- return (0);
- }
|