Home
last modified time | relevance | path

Searched refs:TH_RST (Results 1 – 25 of 39) sorted by relevance

12

/trueos/sys/netinet/
HDtcp.h66 #define TH_RST 0x04 macro
72 #define TH_FLAGS (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|TH_ECE|TH_CWR)
HDtcp_input.c751 if ((thflags & (TH_SYN | TH_FIN | TH_RST)) != 0) { in tcp_input()
977 if ((thflags & (TH_SYN | TH_FIN | TH_RST)) != 0) in tcp_input()
1053 if ((thflags & (TH_RST|TH_ACK|TH_SYN)) == TH_ACK) { in tcp_input()
1121 if ((thflags & TH_RST) == 0 || in tcp_input()
1149 if (thflags & TH_RST) { in tcp_input()
1203 KASSERT((thflags & (TH_RST|TH_ACK)) == 0, in tcp_input()
1360 if ((thflags & TH_RST) == 0 || in tcp_input()
1461 if ((thflags & (TH_SYN | TH_FIN | TH_RST)) != 0 || in tcp_do_segment()
1609 (thflags & (TH_SYN|TH_FIN|TH_RST|TH_URG|TH_ACK)) == TH_ACK && in tcp_do_segment()
1902 if ((thflags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)) { in tcp_do_segment()
[all …]
HDtcp_fsm.h86 TH_RST|TH_ACK, /* 0, CLOSED */
HDtcp_offload.c131 if (flags & TH_RST) { in tcp_offload_output()
/trueos/contrib/ipfilter/ipsd/Celler/
HDip_compat.h57 #ifndef TH_RST
58 # define TH_RST 0x04 macro
/trueos/contrib/ipfilter/ipsend/.OLD/
HDip_compat.h57 #ifndef TH_RST
58 # define TH_RST 0x04 macro
/trueos/contrib/ipfilter/lib/
HDflags.c24 u_char flags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH, TH_ACK, TH_URG,
HDprintpacket.c94 if (tcp->th_flags & TH_RST)
HDipft_tx.c29 static u_char myflags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH,
/trueos/contrib/tcpdump/
HDtcp.h59 #define TH_RST 0x04 macro
HDprint-tcp.c100 { TH_RST, "R" },
429 if (vflag > 1 || length > 0 || flags & (TH_SYN | TH_FIN | TH_RST)) { in tcp_print()
637 if ((flags & TH_RST) && vflag) { in tcp_print()
HDprint-cnfp.c171 if (flags & TH_RST) putchar('R'); in cnfp_print()
/trueos/sys/netpfil/ipfw/
HDip_fw_dynamic.c373 u_char flags = pkt->_flags & (TH_FIN | TH_SYN | TH_RST); in lookup_dyn_rule_locked()
427 if ( (q->state & ((TH_RST << 8)|TH_RST)) == 0) in lookup_dyn_rule_locked()
842 dir = ((flags & (TH_SYN | TH_RST)) == TH_SYN); in ipfw_send_pkt()
896 if (flags & TH_RST) { in ipfw_send_pkt()
899 th->th_flags = TH_RST; in ipfw_send_pkt()
904 th->th_flags = TH_RST | TH_ACK; in ipfw_send_pkt()
HDip_fw2.c583 if ((tcp->th_flags & TH_RST) == 0) { in send_reject6()
587 tcp->th_flags | TH_RST); in send_reject6()
638 if ( (tcp->th_flags & TH_RST) == 0) { in send_reject()
642 tcp->th_flags | TH_RST); in send_reject()
1757 (TH_RST | TH_ACK | TH_SYN)) != TH_SYN); in ipfw_chk()
/trueos/cddl/lib/libdtrace/
HDtcp.d62 #pragma D binding "1.0" TH_RST
63 inline uint8_t TH_RST = 0x04; variable
/trueos/contrib/pf/tftp-proxy/
HDfilter.c304 (TH_SYN|TH_ACK|TH_FIN|TH_RST) : 0); in prepare_rule()
308 (TH_SYN|TH_ACK|TH_FIN|TH_RST) : NULL); in prepare_rule()
/trueos/sys/contrib/ipfilter/netinet/
HDip_compat.h746 #define TCPF_ALL (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|\
1050 #ifndef TH_RST
1051 # define TH_RST 0x04 macro
1063 #define TH_ACKMASK (TH_FIN|TH_SYN|TH_RST|TH_ACK)
HDip_fil_freebsd.c366 if (tcp->th_flags & TH_RST)
413 tcp2->th_flags = TH_RST;
420 tcp2->th_flags = TH_RST|TH_ACK;
/trueos/sys/netinet/libalias/
HDalias.c196 if (th_flags & TH_RST) in TcpMonitorIn()
202 if (th_flags & (TH_FIN | TH_RST)) in TcpMonitorIn()
214 if (th_flags & TH_RST) in TcpMonitorOut()
220 if (th_flags & (TH_FIN | TH_RST)) in TcpMonitorOut()
/trueos/contrib/ipfilter/ipsend/
HDipsend.c411 tcp->th_flags |= TH_RST;
/trueos/usr.sbin/trpt/
HDtrpt.c399 pf(TH_RST, "RST"); in tcp_trace()
/trueos/sys/net/
HDflowtable.c219 if (th->th_flags & (TH_RST|TH_FIN)) in flowtable_lookup_ipv4()
334 if (TCP(ulp)->th_flags & (TH_RST|TH_FIN)) in flowtable_lookup_ipv6()
HDslcompress.c180 if ((th->th_flags & (TH_SYN|TH_FIN|TH_RST|TH_ACK)) != TH_ACK)
/trueos/usr.sbin/ppp/
HDslcompress.c184 if ((th->th_flags & (TH_SYN | TH_FIN | TH_RST | TH_ACK)) != TH_ACK) { in sl_compress_tcp()
/trueos/sys/netpfil/pf/
HDpf.c1587 TH_RST|TH_ACK, 0, 0, 0, 1, s->tag, NULL); in pf_unlink_state()
1877 if (f & TH_RST) in pf_print_flags()
3321 !(th->th_flags & TH_RST)) { in pf_test_rule()
3355 ntohl(th->th_ack), ack, TH_RST|TH_ACK, 0, 0, in pf_test_rule()
3855 (th->th_flags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)) || in pf_tcp_track_full()
3901 ((th->th_flags & TH_RST) == 0 || orig_seq == src->seqlo || in pf_tcp_track_full()
3942 if (th->th_flags & TH_RST) in pf_tcp_track_full()
4029 if (th->th_flags & TH_RST) in pf_tcp_track_full()
4038 if (!(th->th_flags & TH_RST)) in pf_tcp_track_full()
4042 TH_RST, 0, 0, in pf_tcp_track_full()
[all …]

12