Home
last modified time | relevance | path

Searched refs:IS_SRC_OR_DST_PORT (Results 1 – 3 of 3) sorted by relevance

/external/tcpdump/
Dprint-udp.c593 if (IS_SRC_OR_DST_PORT(NAMESERVER_PORT)) in udp_print()
596 else if (IS_SRC_OR_DST_PORT(MULTICASTDNS_PORT)) in udp_print()
599 else if (IS_SRC_OR_DST_PORT(TIMED_PORT)) in udp_print()
601 else if (IS_SRC_OR_DST_PORT(TFTP_PORT)) in udp_print()
603 else if (IS_SRC_OR_DST_PORT(BOOTPC_PORT) || IS_SRC_OR_DST_PORT(BOOTPS_PORT)) in udp_print()
605 else if (IS_SRC_OR_DST_PORT(RIP_PORT)) in udp_print()
607 else if (IS_SRC_OR_DST_PORT(AODV_PORT)) in udp_print()
610 else if (IS_SRC_OR_DST_PORT(ISAKMP_PORT)) in udp_print()
612 else if (IS_SRC_OR_DST_PORT(ISAKMP_PORT_NATT)) in udp_print()
614 else if (IS_SRC_OR_DST_PORT(ISAKMP_PORT_USER1) || IS_SRC_OR_DST_PORT(ISAKMP_PORT_USER2)) in udp_print()
[all …]
Dprint-tcp.c741 if (IS_SRC_OR_DST_PORT(TELNET_PORT)) { in tcp_print()
743 } else if (IS_SRC_OR_DST_PORT(SMTP_PORT)) { in tcp_print()
746 } else if (IS_SRC_OR_DST_PORT(WHOIS_PORT)) { in tcp_print()
749 } else if (IS_SRC_OR_DST_PORT(BGP_PORT)) in tcp_print()
751 else if (IS_SRC_OR_DST_PORT(PPTP_PORT)) in tcp_print()
753 else if (IS_SRC_OR_DST_PORT(REDIS_PORT)) in tcp_print()
755 else if (IS_SRC_OR_DST_PORT(SSH_PORT)) in tcp_print()
758 else if (IS_SRC_OR_DST_PORT(NETBIOS_SSN_PORT)) in tcp_print()
760 else if (IS_SRC_OR_DST_PORT(SMB_PORT)) in tcp_print()
763 else if (IS_SRC_OR_DST_PORT(BEEP_PORT)) in tcp_print()
[all …]
Dnetdissect.h310 #define IS_SRC_OR_DST_PORT(p) (sport == (p) || dport == (p)) macro