HomeSort by: relevance | last modified time | path
    Searched refs:TH_RST (Results 1 - 21 of 21) sorted by relevancy

  /src/sys/netinet/
tcp_fsm.h 67 * Basic flags (TH_RST,TH_ACK,TH_SYN,TH_FIN) are totally
72 TH_RST|TH_ACK, /* CLOSED */
tcp.h 66 #define TH_RST 0x04 /* Reset: Announce to peer conn terminated */
tcp_input.c 1013 if (tiflags & TH_RST)
1015 tiflags &= ~(TH_FIN|TH_RST);
1027 } else if ((tiflags & TH_RST) &&
1112 if (tiflags & TH_RST) {
1142 if (tiflags & TH_RST)
1166 if (tiflags & TH_RST)
1170 tcp_respond(0, m, m, th, (tcp_seq)0, th->th_ack, TH_RST);
1175 TH_RST|TH_ACK);
1407 (tiflags & (TH_RST|TH_ACK|TH_SYN)) == TH_SYN) {
1440 (tiflags & (TH_RST|TH_ACK|TH_SYN)) == TH_SYN)
    [all...]
tcp_output.c 990 if (flags & (TH_SYN|TH_FIN|TH_RST))
1107 (flags & TH_RST) == 0 &&
1249 else if (flags & (TH_SYN|TH_FIN|TH_RST))
tcp_syncache.c 782 (void)tcp_respond(NULL, m, m, th, (tcp_seq)0, th->th_ack, TH_RST);
tcp_subr.c 617 if (tp != NULL && (flags & TH_RST) == 0) {
  /src/sys/net/npf/
npf_state_tcp.c 385 } else if ((tcpfl & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST) && ack == 0) {
390 if (__predict_false(tcpfl & TH_RST)) {
467 if (__predict_true((tcpfl & TH_RST) == 0)) {
npf_sendpkt.c 109 if (oth->th_flags & TH_RST) {
176 th->th_flags = TH_ACK | TH_RST;
  /src/sys/external/bsd/ipf/netinet/
ip_compat.h 818 #define TCPF_ALL (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|\
1122 #ifndef TH_RST
1123 # define TH_RST 0x04
1135 #define TH_ACKMASK (TH_FIN|TH_SYN|TH_RST|TH_ACK)
ip_fil_netbsd.c 744 if (tcp->th_flags & TH_RST)
792 tcp2->th_flags = TH_RST;
799 tcp2->th_flags = TH_RST|TH_ACK;
ip_state.c 1544 if (tcp->th_flags & TH_RST) {
2176 } else if (((tcpflags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)) &&
2221 } else if ((seq == 0) && (tcpflags == (TH_RST|TH_ACK)) &&
3976 if (tcpflags & TH_RST) {
fil.c 1389 ((flags & (TH_RST|TH_ACK)) == TH_RST)) {
1390 /* TH_FIN|TH_RST|TH_ACK seems to appear "naturally" */
1421 } else if (!(flags & (TH_RST|TH_SYN))) {
  /src/dist/pf/libexec/tftp-proxy/
filter.c 303 (TH_SYN|TH_ACK|TH_FIN|TH_RST) : 0);
  /src/usr.sbin/trpt/
trpt.c 488 pf(TH_RST, "RST");
  /src/sys/dist/pf/net/
pf_norm.c 1331 if (flags & TH_RST)
1338 if (!(flags & (TH_ACK|TH_RST)))
1767 } else if (!got_ts && (th->th_flags & TH_RST) == 0 &&
pf.c 1077 TH_RST|TH_ACK, 0, 0, 0, 1, cur->tag, NULL, NULL);
1307 if (f & TH_RST)
3440 !(th->th_flags & TH_RST)) {
3459 ntohl(th->th_ack), ack, TH_RST|TH_ACK, 0, 0,
4039 (th->th_flags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)) ||
4085 ((th->th_flags & TH_RST) == 0 || orig_seq == src->seqlo ||
4125 if (th->th_flags & TH_RST)
4211 if (th->th_flags & TH_RST)
4220 if (!(th->th_flags & TH_RST))
    [all...]
  /src/sys/net/
slcompress.c 196 if ((th->th_flags & (TH_SYN|TH_FIN|TH_RST|TH_ACK)) != TH_ACK)
  /src/usr.sbin/npf/npfctl/
npf_data.c 523 case 'R': tfl |= TH_RST; break;
npf_show.c 172 if (tfl & TH_RST) buf[i++] = 'R';
npf_build.c 510 npfctl_bpf_tcpfl(bc, TH_SYN, TH_SYN | TH_ACK | TH_FIN | TH_RST);
  /src/sys/kern/
uipc_mbufdebug.c 839 if (tcp.th_flags & TH_RST)

Completed in 78 milliseconds