Searched refs:TH_RST (Results 1 - 25 of 40) sorted by relevance

12

/freebsd-9.3-release/contrib/ipfilter/lib/
H A Dflags.c24 u_char flags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH, TH_ACK, TH_URG,
H A Dprintpacket.c75 if (tcp->th_flags & TH_RST)
H A Dipft_tx.c35 static u_char myflags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH,
/freebsd-9.3-release/sys/netinet/
H A Dtcp_fsm.h80 * Flags used when sending segments in tcp_output. Basic flags (TH_RST,
86 TH_RST|TH_ACK, /* 0, CLOSED */
H A Dtcp.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)
H A Dtcp_input.c774 if ((thflags & (TH_SYN | TH_FIN | TH_RST)) != 0) {
1011 if ((thflags & (TH_SYN | TH_FIN | TH_RST)) != 0)
1087 if ((thflags & (TH_RST|TH_ACK|TH_SYN)) == TH_ACK) {
1155 if ((thflags & TH_RST) == 0 ||
1183 if (thflags & TH_RST) {
1237 KASSERT((thflags & (TH_RST|TH_ACK)) == 0,
1238 ("%s: Listen socket: TH_RST or TH_ACK set", __func__));
1394 if ((thflags & TH_RST) == 0 ||
1491 if ((thflags & (TH_SYN | TH_FIN | TH_RST)) != 0 ||
1621 (thflags & (TH_SYN|TH_FIN|TH_RST|TH_UR
[all...]
H A Dtcp_offload.c131 if (flags & TH_RST) {
H A Dtcp_timewait.c385 if (thflags & TH_RST)
/freebsd-9.3-release/contrib/tcpdump/
H A Dtcp.h59 #define TH_RST 0x04 macro
H A Dprint-cnfp.c171 if (flags & TH_RST) putchar('R');
H A Dprint-tcp.c100 { TH_RST, "R" },
429 if (vflag > 1 || length > 0 || flags & (TH_SYN | TH_FIN | TH_RST)) {
637 if ((flags & TH_RST) && vflag) {
/freebsd-9.3-release/contrib/ipfilter/ipsd/Celler/
H A Dip_compat.h57 #ifndef TH_RST
58 # define TH_RST 0x04 macro
/freebsd-9.3-release/contrib/ipfilter/ipsend/.OLD/
H A Dip_compat.h57 #ifndef TH_RST
58 # define TH_RST 0x04 macro
/freebsd-9.3-release/sys/netpfil/ipfw/
H A Dip_fw_dynamic.c373 u_char flags = pkt->_flags & (TH_FIN | TH_SYN | TH_RST);
427 if ( (q->state & ((TH_RST << 8)|TH_RST)) == 0)
796 * When flags & TH_RST, we are sending a RST packet, because of a
842 dir = ((flags & (TH_SYN | TH_RST)) == TH_SYN);
896 if (flags & TH_RST) {
899 th->th_flags = TH_RST;
904 th->th_flags = TH_RST | TH_ACK;
H A Dip_fw2.c582 if ((tcp->th_flags & TH_RST) == 0) {
586 tcp->th_flags | TH_RST);
639 if ( (tcp->th_flags & TH_RST) == 0) {
643 tcp->th_flags | TH_RST);
1758 (TH_RST | TH_ACK | TH_SYN)) != TH_SYN);
/freebsd-9.3-release/contrib/pf/tftp-proxy/
H A Dfilter.c304 (TH_SYN|TH_ACK|TH_FIN|TH_RST) : 0);
308 (TH_SYN|TH_ACK|TH_FIN|TH_RST) : NULL);
/freebsd-9.3-release/contrib/ipfilter/ipsend/
H A Dipsend.c411 tcp->th_flags |= TH_RST;
/freebsd-9.3-release/sys/contrib/ipfilter/netinet/
H A Dip_fil_freebsd.c563 if (tcp->th_flags & TH_RST)
610 tcp2->th_flags = TH_RST;
617 tcp2->th_flags = TH_RST|TH_ACK;
H A Dip_compat.h1871 #define TCPF_ALL (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|\
2173 #ifndef TH_RST
2174 # define TH_RST 0x04 macro
2186 #define TH_ACKMASK (TH_FIN|TH_SYN|TH_RST|TH_ACK)
/freebsd-9.3-release/sys/net/
H A Dslcompress.c180 if ((th->th_flags & (TH_SYN|TH_FIN|TH_RST|TH_ACK)) != TH_ACK)
/freebsd-9.3-release/sys/netinet/libalias/
H A Dalias.c196 if (th_flags & TH_RST)
202 if (th_flags & (TH_FIN | TH_RST))
214 if (th_flags & TH_RST)
220 if (th_flags & (TH_FIN | TH_RST))
/freebsd-9.3-release/usr.sbin/ppp/
H A Dslcompress.c184 if ((th->th_flags & (TH_SYN | TH_FIN | TH_RST | TH_ACK)) != TH_ACK) {
/freebsd-9.3-release/usr.sbin/trpt/
H A Dtrpt.c399 pf(TH_RST, "RST");
/freebsd-9.3-release/sys/dev/sfxge/
H A Dsfxge_rx.c496 | (th->th_flags & (TH_URG | TH_SYN | TH_RST | TH_FIN)));
543 if (th->th_flags & (TH_FIN | TH_RST)) {
/freebsd-9.3-release/sys/netgraph/netflow/
H A Dnetflow.c756 if (tcp_flags & TH_FIN || tcp_flags & TH_RST || AGED(fle) ||
881 if (tcp_flags & TH_FIN || tcp_flags & TH_RST || AGED(fle6) ||

Completed in 280 milliseconds

12