diff options
author | Xin LI <delphij@FreeBSD.org> | 2015-01-07 19:55:18 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2015-01-07 19:55:18 +0000 |
commit | 3c602fabf9b894ff79f08a80cbb7ad3b1eb84e62 (patch) | |
tree | e268839e08c106e178b33bd461d8d0a9c6fb5ad9 /contrib/tcpdump/print-msnlb.c | |
parent | 61b3223976cc010f61cd50773dd8b9e06d123d9a (diff) | |
parent | e91eac244982a8728f370000c353b16e18174ec9 (diff) |
Notes
Diffstat (limited to 'contrib/tcpdump/print-msnlb.c')
-rw-r--r-- | contrib/tcpdump/print-msnlb.c | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/contrib/tcpdump/print-msnlb.c b/contrib/tcpdump/print-msnlb.c index 4c5fb0cbb45e..fcd000648268 100644 --- a/contrib/tcpdump/print-msnlb.c +++ b/contrib/tcpdump/print-msnlb.c @@ -26,30 +26,28 @@ * SUCH DAMAGE. */ +#define NETDISSECT_REWORKED #ifdef HAVE_CONFIG_H #include "config.h" #endif #include <tcpdump-stdinc.h> -#include <stdio.h> -#include <string.h> - -#include "netdissect.h" +#include "interface.h" #include "addrtoname.h" #include "extract.h" struct msnlb_heartbeat_pkt { - u_int32_t unknown1; - u_int32_t unknown2; - u_int32_t host_prio; /* little-endian */ - u_int32_t virtual_ip; - u_int32_t host_ip; + uint32_t unknown1; + uint32_t unknown2; + uint32_t host_prio; /* little-endian */ + uint32_t virtual_ip; + uint32_t host_ip; /* the protocol is undocumented so we ignore the rest */ }; void -msnlb_print(netdissect_options *ndo, const u_char *bp, u_int length) +msnlb_print(netdissect_options *ndo, const u_char *bp) { const struct msnlb_heartbeat_pkt *hb; @@ -58,8 +56,8 @@ msnlb_print(netdissect_options *ndo, const u_char *bp, u_int length) ND_PRINT((ndo, "MS NLB heartbeat, host priority: %u,", EXTRACT_LE_32BITS(&(hb->host_prio)))); - ND_PRINT((ndo, " cluster IP: %s,", ipaddr_string(&(hb->virtual_ip)))); - ND_PRINT((ndo, " host IP: %s", ipaddr_string(&(hb->host_ip)))); + ND_PRINT((ndo, " cluster IP: %s,", ipaddr_string(ndo, &(hb->virtual_ip)))); + ND_PRINT((ndo, " host IP: %s", ipaddr_string(ndo, &(hb->host_ip)))); return; trunc: ND_PRINT((ndo, "[|MS NLB]")); |