Home
last modified time | relevance | path

Searched refs:TH_URG (Results 1 – 12 of 12) sorted by relevance

/f-stack/freebsd/netinet/
H A Dtcp.h71 #define TH_URG 0x20 macro
75 #define TH_FLAGS (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|TH_ECE|TH_CWR)
H A Dtcp_input.c1750 (thflags & (TH_SYN|TH_FIN|TH_RST|TH_URG|TH_ACK)) == TH_ACK && in tcp_do_segment()
2270 thflags &= ~TH_URG; in tcp_do_segment()
2315 thflags &= ~TH_URG; in tcp_do_segment()
3031 if ((thflags & TH_URG) && th->th_urp && in tcp_do_segment()
3042 thflags &= ~TH_URG; /* XXX */ in tcp_do_segment()
H A Dtcp_output.c1297 th->th_flags |= TH_URG; in tcp_output()
/f-stack/tools/compat/include/netinet/
H A Dtcp.h71 #define TH_URG 0x20 macro
75 #define TH_FLAGS (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|TH_ECE|TH_CWR)
/f-stack/freebsd/net/
H A Dslcompress.c277 if (th->th_flags & TH_URG) { in sl_compress_tcp()
542 th->th_flags |= TH_URG; in sl_uncompress_tcp_core()
545 th->th_flags &=~ TH_URG; in sl_uncompress_tcp_core()
/f-stack/freebsd/netinet/tcp_stacks/
H A Drack_bbr_common.c528 thflags &= ~TH_URG; in ctf_drop_checks()
572 thflags &= ~TH_URG; in ctf_drop_checks()
H A Dbbr.c9289 __predict_true((thflags & (TH_SYN | TH_FIN | TH_RST | TH_URG | TH_ACK)) == TH_ACK) && in bbr_do_established()
/f-stack/freebsd/contrib/ipfilter/netinet/
H A Dip_compat.h718 #define TCPF_ALL (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|\
850 #ifndef TH_URG
851 # define TH_URG 0x20 macro
H A Dfil.c1368 if ((flags & TH_URG) != 0 && (tcp->th_urp == 0)) {
1370 DT3(ipf_fi_bad_th_urg, fr_info_t*, fin, u_int, (flags & TH_URG), u_int, tcp->th_urp);
1372 } else if ((flags & TH_URG) == 0 && (tcp->th_urp != 0)) {
1378 DT3(ipf_fi_bad_th_urg0, fr_info_t *, fin, u_int, (flags & TH_URG), u_int, tcp->th_urp);
1387 ((flags & (TH_URG|TH_PUSH)) != 0)) {
1416 } else if ((flags & (TH_URG|TH_PUSH|TH_FIN)) != 0) {
/f-stack/freebsd/netpfil/pf/
H A Dpf_norm.c1392 if ((flags & TH_FIN) || (flags & TH_PUSH) || (flags & TH_URG)) in pf_normalize_tcp()
1414 if (!(flags & TH_URG) && th->th_urp) { in pf_normalize_tcp()
H A Dpf.c2018 if (f & TH_URG) in pf_print_flags()
/f-stack/tools/ipfw/
H A Dipfw2.c138 { "urg", TH_URG },