/freebsd/sbin/ipf/libipf/ |
H A D | flags.c | 26 uint16_t flags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH, TH_ACK, TH_URG,
|
H A D | ipft_tx.c | 25 TH_ACK, TH_URG, TH_ECN, TH_CWR, TH_AE }; 277 if (__tcp_get_flags(tcp) & TH_URG) in parseline() 449 if (__tcp_get_flags(tcp) & TH_URG) in parseipv6()
|
H A D | printpacket.c | 98 if (tcpflags & TH_URG) in printpacket()
|
/freebsd/contrib/tcpdump/ |
H A D | print-cnfp.c | 233 flags & TH_URG ? "U" : "", in cnfp_v1_print() 335 flags & TH_URG ? "U" : "", in cnfp_v5_print() 437 flags & TH_URG ? "U" : "", in cnfp_v6_print()
|
H A D | tcp.h | 60 #define TH_URG 0x20 macro
|
H A D | print-tcp.c | 110 { TH_URG, "U" }, 434 if (flags & TH_URG) in tcp_print()
|
/freebsd/sys/net/ |
H A D | slcompress.c | 274 if (tcp_get_flags(th) & TH_URG) { in sl_compress_tcp() 539 tcp_set_flags(th, tcp_get_flags(th) | TH_URG); in sl_uncompress_tcp_core() 542 tcp_set_flags(th, tcp_get_flags(th) & ~TH_URG); in sl_uncompress_tcp_core()
|
/freebsd/cddl/lib/libdtrace/ |
H A D | tcp.d | 93 #pragma D binding "1.6.3" TH_URG 94 inline uint16_t TH_URG = 0x20; variable 332 flags & TH_URG ? "URG" :
|
/freebsd/usr.sbin/ppp/ |
H A D | slcompress.c | 286 if (__tcp_get_flags(th) & TH_URG) { in sl_compress_tcp() 525 __tcp_set_flags(th, __tcp_get_flags(th) | TH_URG); in sl_uncompress_tcp() 528 __tcp_set_flags(th, __tcp_get_flags(th) & ~TH_URG); in sl_uncompress_tcp()
|
/freebsd/sys/netinet/ |
H A D | tcp.h | 67 #define TH_URG 0x20 macro 74 #define TH_FLAGS (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|TH_ECE|TH_CWR|TH_AE)
|
H A D | tcp_input.c | 1760 (thflags & (TH_SYN|TH_FIN|TH_RST|TH_URG|TH_ACK)) == TH_ACK && in tcp_do_segment() 2282 thflags &= ~TH_URG; in tcp_do_segment() 2327 thflags &= ~TH_URG; in tcp_do_segment() 3150 if ((thflags & TH_URG) && th->th_urp && in tcp_do_segment() 3161 thflags &= ~TH_URG; /* XXX */ in tcp_do_segment()
|
H A D | tcp_output.c | 1316 flags |= TH_URG; in tcp_default_output()
|
/freebsd/sys/netinet/tcp_stacks/ |
H A D | rack_bbr_common.c | 565 thflags &= ~TH_URG; in ctf_drop_checks() 610 thflags &= ~TH_URG; in ctf_drop_checks()
|
H A D | bbr.c | 9203 __predict_true((thflags & (TH_SYN | TH_FIN | TH_RST | TH_URG | TH_ACK)) == TH_ACK) && in bbr_do_established()
|
/freebsd/sbin/ipf/ipsend/ |
H A D | ipsend.c | 383 __tcp_set_flags(tcp, __tcp_get_flags(tcp) | TH_URG); in main()
|
H A D | iptests.c | 1093 __tcp_set_flags(t, TH_ACK|TH_URG); in ip_test5() 1112 __tcp_set_flags(t, __tcp_get_flags(t) & ~TH_URG); in ip_test5()
|
/freebsd/sys/dev/sfxge/ |
H A D | sfxge_tx.c | 862 KASSERT(!(tcp_get_flags(th) & (TH_URG | TH_SYN)), in sfxge_parse_tx_packet() 864 tcp_get_flags(th) & (TH_URG | TH_SYN))); in sfxge_parse_tx_packet() 1120 KASSERT(!(tcp_get_flags(th) & (TH_URG | TH_SYN)), in tso_start() 1122 tcp_get_flags(th) & (TH_URG | TH_SYN))); in tso_start()
|
H A D | sfxge_rx.c | 548 | (tcp_get_flags(th) & (TH_URG | TH_SYN | TH_RST | TH_FIN))); in sfxge_lro_try_merge()
|
/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | ip_compat.h | 827 #ifndef TH_URG 828 # define TH_URG 0x20 macro
|
H A D | fil.c | 1341 if ((flags & TH_URG) != 0 && (tcp->th_urp == 0)) { in ipf_pr_tcpcommon() 1343 DT3(ipf_fi_bad_th_urg, fr_info_t*, fin, u_int, (flags & TH_URG), u_int, tcp->th_urp); in ipf_pr_tcpcommon() 1345 } else if ((flags & TH_URG) == 0 && (tcp->th_urp != 0)) { in ipf_pr_tcpcommon() 1351 DT3(ipf_fi_bad_th_urg0, fr_info_t *, fin, u_int, (flags & TH_URG), u_int, tcp->th_urp); in ipf_pr_tcpcommon() 1360 ((flags & (TH_URG|TH_PUSH)) != 0)) { in ipf_pr_tcpcommon() 1389 } else if ((flags & (TH_URG|TH_PUSH|TH_FIN)) != 0) { in ipf_pr_tcpcommon()
|
/freebsd/sys/netpfil/pf/ |
H A D | pf_norm.c | 1387 if ((flags & TH_FIN) || (flags & TH_PUSH) || (flags & TH_URG)) in pf_normalize_tcp() 1410 if (!(flags & TH_URG) && th->th_urp) { in pf_normalize_tcp()
|
H A D | pf.c | 3085 if (f & TH_URG) in pf_print_flags()
|
/freebsd/sbin/ipf/iplang/ |
H A D | iplang_y.y | 1049 static int flagv[] = { TH_ACK, TH_SYN, TH_URG, TH_RST, TH_PUSH, in set_tcpflags()
|
/freebsd/sbin/ipf/ipmon/ |
H A D | ipmon.c | 77 { TH_URG, 'U' },
|
/freebsd/sbin/ipfw/ |
H A D | ipfw2.c | 128 { "urg", TH_URG },
|