diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-06-16 17:23:21 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2019-03-26 21:06:24 +0100 |
commit | ee68aa36460d7efeca48747f33b7f2adc0900bfb (patch) | |
tree | 72c1b65d29301835c0e064b433ea685fc856a68e /print-vxlan-gpe.c | |
parent | 1af20c3adc4dfef93de41d4fcd02f0aeb6bbfd4e (diff) | |
download | tcpdump-ee68aa36460d7efeca48747f33b7f2adc0900bfb.tar.gz |
Use the new GET_ macros instead of the EXTRACT_ ones
The exceptions are currently:
Some EXTRACT_ in print-juniper.c, not used on packet buffer pointer.
An EXTRACT_BE_U_3 in addrtoname.c, not always used on packet buffer
pointer.
Diffstat (limited to 'print-vxlan-gpe.c')
-rw-r--r-- | print-vxlan-gpe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print-vxlan-gpe.c b/print-vxlan-gpe.c index 7a022598..1364534e 100644 --- a/print-vxlan-gpe.c +++ b/print-vxlan-gpe.c @@ -69,13 +69,13 @@ vxlan_gpe_print(netdissect_options *ndo, const u_char *bp, u_int len) ND_TCHECK_LEN(bp, VXLAN_GPE_HDR_LEN); - flags = EXTRACT_U_1(bp); + flags = GET_U_1(bp); bp += 3; - next_protocol = EXTRACT_U_1(bp); + next_protocol = GET_U_1(bp); bp += 1; - vni = EXTRACT_BE_U_3(bp); + vni = GET_BE_U_3(bp); bp += 4; ND_PRINT("VXLAN-GPE, "); |