diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2020-08-06 11:22:56 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2020-08-06 16:25:52 +0200 |
commit | 496c43c10b94112b5a2d0634d55d85e58e3f6722 (patch) | |
tree | bf7fa74feb86ad5d8ed3433dfd8ae731215d06b6 /netdissect.h | |
parent | aa8bf0f52768cf4671c1661a29e7c1dd9cf5f5ad (diff) | |
download | tcpdump-496c43c10b94112b5a2d0634d55d85e58e3f6722.tar.gz |
PPP: Update the link-layer dissectors to void functions
Moreover:
Remove trailing "_if" from some protocol names.
Update the outputs of two tests accordingly.
Diffstat (limited to 'netdissect.h')
-rw-r--r-- | netdissect.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/netdissect.h b/netdissect.h index 6e966262..ea914d5b 100644 --- a/netdissect.h +++ b/netdissect.h @@ -512,9 +512,9 @@ extern void null_if_print IF_PRINTER_ARGS; extern u_int pflog_if_print IF_PRINTER_ARGS; extern void pktap_if_print IF_PRINTER_ARGS; extern void ppi_if_print IF_PRINTER_ARGS; -extern u_int ppp_bsdos_if_print IF_PRINTER_ARGS; -extern u_int ppp_hdlc_if_print IF_PRINTER_ARGS; -extern u_int ppp_if_print IF_PRINTER_ARGS; +extern void ppp_bsdos_if_print IF_PRINTER_ARGS; +extern void ppp_hdlc_if_print IF_PRINTER_ARGS; +extern void ppp_if_print IF_PRINTER_ARGS; extern void pppoe_if_print IF_PRINTER_ARGS; extern void prism_if_print IF_PRINTER_ARGS; extern void raw_if_print IF_PRINTER_ARGS; |