X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/d08b4abef4de825b3aecbb7c7e7601ac010806fc..0845bc813c1cc48b18cdefff0b387c110647463c:/print-vxlan.c diff --git a/print-vxlan.c b/print-vxlan.c index 6f60d92a..fd12d2d3 100644 --- a/print-vxlan.c +++ b/print-vxlan.c @@ -23,7 +23,9 @@ #include "extract.h" /* - * VXLAN header, draft-mahalingam-dutt-dcops-vxlan-03 + * VXLAN header, RFC7348 + * Virtual eXtensible Local Area Network (VXLAN): A Framework + * for Overlaying Virtualized Layer 2 Networks over Layer 3 Networks * * 0 1 2 3 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 @@ -37,8 +39,8 @@ void vxlan_print(netdissect_options *ndo, const u_char *bp, u_int len) { - u_int8_t flags; - u_int32_t vni; + uint8_t flags; + uint32_t vni; if (len < 8) { ND_PRINT((ndo, "[|VXLAN]"));