Home
last modified time | relevance | path

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

/freebsd-head/contrib/tcpdump/
HDprint-udp.c589 if (IS_SRC_OR_DST_PORT(NAMESERVER_PORT)) in udp_print()
592 else if (IS_SRC_OR_DST_PORT(BOOTPC_PORT) || in udp_print()
593 IS_SRC_OR_DST_PORT(BOOTPS_PORT)) in udp_print()
595 else if (IS_SRC_OR_DST_PORT(TFTP_PORT)) in udp_print()
597 else if (IS_SRC_OR_DST_PORT(KERBEROS_PORT)) in udp_print()
599 else if (IS_SRC_OR_DST_PORT(NTP_PORT)) in udp_print()
602 else if (IS_SRC_OR_DST_PORT(NETBIOS_NS_PORT)) in udp_print()
604 else if (IS_SRC_OR_DST_PORT(NETBIOS_DGRAM_PORT)) in udp_print()
607 else if (IS_SRC_OR_DST_PORT(SNMP_PORT) || in udp_print()
608 IS_SRC_OR_DST_PORT(SNMPTRAP_PORT)) in udp_print()
[all …]
HDprint-tcp.c739 if (IS_SRC_OR_DST_PORT(FTP_PORT)) { in tcp_print()
742 } else if (IS_SRC_OR_DST_PORT(SSH_PORT)) { in tcp_print()
744 } else if (IS_SRC_OR_DST_PORT(TELNET_PORT)) { in tcp_print()
746 } else if (IS_SRC_OR_DST_PORT(SMTP_PORT)) { in tcp_print()
749 } else if (IS_SRC_OR_DST_PORT(WHOIS_PORT)) { in tcp_print()
752 } else if (IS_SRC_OR_DST_PORT(NAMESERVER_PORT)) { in tcp_print()
755 } else if (IS_SRC_OR_DST_PORT(HTTP_PORT)) { in tcp_print()
759 } else if (IS_SRC_OR_DST_PORT(NETBIOS_SSN_PORT)) { in tcp_print()
762 } else if (IS_SRC_OR_DST_PORT(BGP_PORT)) { in tcp_print()
764 } else if (IS_SRC_OR_DST_PORT(RPKI_RTR_PORT)) { in tcp_print()
[all …]
HDnetdissect.h309 #define IS_SRC_OR_DST_PORT(p) (sport == (p) || dport == (p)) macro