diff options
author | Guy Harris <guy@alum.mit.edu> | 2014-04-04 00:43:46 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2014-04-04 00:43:46 -0700 |
commit | 1cde6435df23876fb88998e38739def0dc7dca47 (patch) | |
tree | bdd17f2de3c9b1588da3ef07daf803f51761db0c /print-ppi.c | |
parent | ed58b28d5400642cbd797e280d12b3f1b638e850 (diff) | |
download | tcpdump-1cde6435df23876fb88998e38739def0dc7dca47.tar.gz |
Netdissectify the to-name resolution routines.
Have them take a netdissect_options * argument, and get the "no name
resolution" flag from it.
Move the declaration of dnaddr_string to addrtoname.h, along with the
other XXX-to-string routines.
Diffstat (limited to 'print-ppi.c')
-rw-r--r-- | print-ppi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print-ppi.c b/print-ppi.c index f2a6dad9..16815720 100644 --- a/print-ppi.c +++ b/print-ppi.c @@ -23,7 +23,7 @@ typedef struct ppi_header { #ifdef DLT_PPI static inline void -ppi_header_print(struct netdissect_options *ndo, const u_char *bp, u_int length) +ppi_header_print(netdissect_options *ndo, const u_char *bp, u_int length) { const ppi_header_t *hdr; u_int32_t dlt; @@ -46,7 +46,7 @@ ppi_header_print(struct netdissect_options *ndo, const u_char *bp, u_int length) } static void -ppi_print(struct netdissect_options *ndo, +ppi_print(netdissect_options *ndo, const struct pcap_pkthdr *h, const u_char *p) { if_ndo_printer ndo_printer; @@ -91,7 +91,7 @@ ppi_print(struct netdissect_options *ndo, * is the number of bytes actually captured. */ u_int -ppi_if_print(struct netdissect_options *ndo, +ppi_if_print(netdissect_options *ndo, const struct pcap_pkthdr *h, const u_char *p) { ppi_print(ndo, h, p); |