X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/246ca110d152b6483fd8c1c176a570858307f76b..20ecf68b9ed076df8c7db120e69a44663c4e6e82:/print-udp.c diff --git a/print-udp.c b/print-udp.c index 9cde3d89..0f5c8307 100644 --- a/print-udp.c +++ b/print-udp.c @@ -528,6 +528,10 @@ udp_print(netdissect_options *ndo, const u_char *bp, u_int length, udpipaddr_print(ndo, ip, sport, dport); someip_print(ndo, cp, length); break; + case PT_DOMAIN: + udpipaddr_print(ndo, ip, sport, dport); + domain_print(ndo, (const u_char *)(up + 1), length, 0); + break; } return; } @@ -687,6 +691,8 @@ udp_print(netdissect_options *ndo, const u_char *bp, u_int length, (IP_V(ip) == 6) ? 1 : 0); else if (IS_SRC_OR_DST_PORT(MPLS_LSP_PING_PORT)) lspping_print(ndo, (const u_char *)(up + 1), length); + else if (sport == BCM_LI_PORT) + bcm_li_print(ndo, (const u_char *)(up+1), length); else if (dport == BFD_CONTROL_PORT || dport == BFD_MULTIHOP_PORT || dport == BFD_LAG_PORT ||