/titanic_44/usr/src/cmd/dtrace/demo/ip/ |
H A D | tcprst.d | 29 #define TH_RST 0x04 macro 157 /(self->flags & TH_RST)/ 166 /(self->flags & TH_RST) && (num[self->conn_id] >= 10)/ 175 /(self->flags & TH_RST) && (num[self->conn_id] >= 9)/ 184 /(self->flags & TH_RST) && (num[self->conn_id] >= 8)/ 193 /(self->flags & TH_RST) && (num[self->conn_id] >= 7)/ 202 /(self->flags & TH_RST) && (num[self->conn_id] >= 6)/ 211 /(self->flags & TH_RST) && (num[self->conn_id] >= 5)/ 220 /(self->flags & TH_RST) && (num[self->conn_id] >= 4)/ 229 /(self->flags & TH_RST) && (num[self->conn_id] >= 3)/ [all …]
|
/titanic_44/usr/src/cmd/ipf/lib/common/ |
H A D | flags.c | 22 u_char flags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH, TH_ACK, TH_URG,
|
H A D | printpacket.c | 71 if (tcp->th_flags & TH_RST)
|
H A D | ipft_tx.c | 37 static u_char myflags[] = { TH_FIN, TH_SYN, TH_RST, TH_PUSH,
|
/titanic_44/usr/src/uts/common/netinet/ |
H A D | tcp_fsm.h | 55 TH_RST|TH_ACK, 0, TH_SYN, TH_SYN|TH_ACK,
|
H A D | tcp.h | 66 #define TH_RST 0x04 macro
|
/titanic_44/usr/src/uts/common/inet/tcp/ |
H A D | tcp_time_wait.c | 535 if (flags & TH_RST) { in tcp_time_wait_processing() 661 if (flags & TH_RST) { in tcp_time_wait_processing() 690 if (flags & TH_RST) { in tcp_time_wait_processing() 696 TH_RST|TH_ACK); in tcp_time_wait_processing()
|
H A D | tcp_input.c | 729 if ((flags & TH_RST) == 0 && in tcp_paws_check() 1009 eager, eager->tcp_snxt, 0, TH_RST); in tcp_eager_kill() 1342 if ((flags & TH_RST) || (flags & TH_URG)) { in tcp_input_listener() 2545 if (flags & TH_RST) in tcp_input_data() 2548 tcp, seg_ack, 0, TH_RST); in tcp_input_data() 2553 if (flags & TH_RST) { in tcp_input_data() 2806 tcp, seg_ack, 0, TH_RST); in tcp_input_data() 2819 tcp, seg_ack, 0, TH_RST); in tcp_input_data() 2905 tcp->tcp_snxt, 0, TH_RST); in tcp_input_data() 2968 if (flags & TH_RST) { in tcp_input_data() [all …]
|
H A D | tcp_output.c | 1640 tcp_xmit_ctl(msg, tcp, tcp->tcp_snxt, 0, TH_RST); in tcp_close_output() 2378 if (ctl & TH_RST) { in tcp_xmit_ctl() 2563 if (tcpha->tha_flags & TH_RST) { in tcp_xmit_early_reset() 2607 if (ctl & TH_RST) { in tcp_xmit_early_reset() 2745 if (flags & TH_RST) { in tcp_xmit_listeners_reset() 2748 tcp_xmit_early_reset("no tcp, reset", mp, seg_ack, 0, TH_RST, in tcp_xmit_listeners_reset() 2767 seg_seq + seg_len, TH_RST | TH_ACK, ira, ipst, connp); in tcp_xmit_listeners_reset()
|
H A D | tcp_timers.c | 963 tcp->tcp_rnxt, TH_RST | TH_ACK); in tcp_timer()
|
/titanic_44/usr/src/cmd/dtrace/demo/tcp/ |
H A D | tcpioflags.d | 56 printf("%s", args[4]->tcp_flags & TH_RST ? "RST|" : "");
|
H A D | tcpsnoop.d | 70 printf("%s", args[4]->tcp_flags & TH_RST ? "RST|" : "");
|
/titanic_44/usr/src/stand/lib/tcp/ |
H A D | tcp.c | 805 eager, NULL, eager->tcp_snxt, 0, TH_RST, 0, in tcp_eager_cleanup() 814 eager, NULL, eager->tcp_snxt, 0, TH_RST, 0, sock_id); in tcp_eager_cleanup() 1007 tcp_xmit_ctl(msg, tcp, NULL, tcp->tcp_snxt, 0, TH_RST, 0, in tcp_close() 2399 if ((flags & TH_RST) == 0 && in tcp_paws_check() 2770 if ((flags & (TH_RST | TH_ACK | TH_SYN)) != TH_SYN) { in tcp_rput_data() 2771 if (flags & TH_RST) { in tcp_rput_data() 2777 sock_id, mp, seg_ack, 0, TH_RST, in tcp_rput_data() 2814 if (flags & TH_RST) { in tcp_rput_data() 2819 tcp, mp, seg_ack, 0, TH_RST, in tcp_rput_data() 2825 if (flags & TH_RST) { in tcp_rput_data() [all …]
|
/titanic_44/usr/src/lib/libdtrace/common/ |
H A D | tcp.sed.in | 32 SED_REPLACE(TH_RST)
|
H A D | tcp.d.in | 32 inline int TH_RST = @TH_RST@; variable 33 #pragma D binding "1.6.3" TH_RST
|
/titanic_44/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_tcp.c | 70 { TH_RST, "Rst" }, 186 dlc_header) + 4, 1), " %s", getflag(tcp->th_flags, TH_RST, in interpret_tcp()
|
/titanic_44/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | vjcompress.c | 186 if ((th->th_flags & (TH_SYN|TH_FIN|TH_RST|TH_ACK)) != TH_ACK) { in vj_compress_tcp()
|
/titanic_44/usr/src/uts/common/io/nxge/ |
H A D | nxge_send.c | 1356 VERIFY((otcph->th_flags & (TH_SYN | TH_RST | TH_URG)) == 0); in nxge_do_softlso() 1600 ntcph->th_flags &= ~(TH_FIN | TH_PUSH | TH_RST); in nxge_do_softlso() 1645 ntcph->th_flags &= ~(TH_FIN | TH_PUSH | TH_RST | TH_URG); in nxge_do_softlso()
|
/titanic_44/usr/src/uts/common/inet/ipf/ |
H A D | ip_fil_solaris.c | 1112 if (tcp->th_flags & TH_RST) 1141 tcp2->th_flags = TH_RST; 1146 tcp2->th_flags = TH_RST|TH_ACK; 2444 tcp->th_flags = TH_RST | TH_ACK;
|
H A D | ip_state.c | 1317 if (tcp->th_flags & TH_RST) 1862 } else if (((tcpflags & (TH_ACK|TH_RST)) == (TH_ACK|TH_RST)) && 1922 } else if ((seq == 0) && (tcpflags == (TH_RST|TH_ACK)) && 3612 if (tcpflags & TH_RST) {
|
H A D | ip_proxy.c | 549 if ((fin->fin_tcpf & TH_RST) != 0)
|
/titanic_44/usr/src/uts/common/inet/ipf/netinet/ |
H A D | ip_compat.h | 1811 #define TCPF_ALL (TH_FIN|TH_SYN|TH_RST|TH_PUSH|TH_ACK|TH_URG|\ 2113 #ifndef TH_RST 2114 # define TH_RST 0x04 macro 2126 #define TH_ACKMASK (TH_FIN|TH_SYN|TH_RST|TH_ACK)
|
/titanic_44/usr/src/cmd/mdb/common/modules/ip/ |
H A D | ip.c | 1017 { "RST", TH_RST, TH_RST },
|
/titanic_44/usr/src/cmd/cmd-inet/usr.bin/pppd/ |
H A D | ipcp.c | 1917 if (val & TH_RST)
|
/titanic_44/usr/src/uts/common/inet/ilb/ |
H A D | ilb_conn.c | 701 if (tcpha->tha_flags & TH_RST) in update_conn_tcp()
|