]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-vxlan.c
document SIGUSR1 in manual page
[tcpdump] / print-vxlan.c
index a86e9cfaa01225b60985c46f7f920db7673f63b8..c4de68d5fb4f52793bc25d6b0d1b3599493ab182 100644 (file)
@@ -24,7 +24,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
@@ -38,8 +40,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]"));